Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 1 | /* |
Marc Zyngier | d7276b8 | 2016-12-20 15:11:47 +0000 | [diff] [blame] | 2 | * Copyright (C) 2013-2017 ARM Limited, All Rights Reserved. |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [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 | |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 18 | #include <linux/acpi.h> |
Hanjun Guo | 8d3554b | 2017-03-07 20:39:59 +0800 | [diff] [blame] | 19 | #include <linux/acpi_iort.h> |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 20 | #include <linux/bitmap.h> |
| 21 | #include <linux/cpu.h> |
| 22 | #include <linux/delay.h> |
Robin Murphy | 44bb7e2 | 2016-09-12 17:13:59 +0100 | [diff] [blame] | 23 | #include <linux/dma-iommu.h> |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 24 | #include <linux/interrupt.h> |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 25 | #include <linux/irqdomain.h> |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 26 | #include <linux/log2.h> |
| 27 | #include <linux/mm.h> |
| 28 | #include <linux/msi.h> |
| 29 | #include <linux/of.h> |
| 30 | #include <linux/of_address.h> |
| 31 | #include <linux/of_irq.h> |
| 32 | #include <linux/of_pci.h> |
| 33 | #include <linux/of_platform.h> |
| 34 | #include <linux/percpu.h> |
| 35 | #include <linux/slab.h> |
Derek Basehore | dba0bc7 | 2018-02-28 21:48:18 -0800 | [diff] [blame] | 36 | #include <linux/syscore_ops.h> |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 37 | |
Joel Porquet | 41a83e06 | 2015-07-07 17:11:46 -0400 | [diff] [blame] | 38 | #include <linux/irqchip.h> |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 39 | #include <linux/irqchip/arm-gic-v3.h> |
Marc Zyngier | c808eea | 2016-12-20 09:31:20 +0000 | [diff] [blame] | 40 | #include <linux/irqchip/arm-gic-v4.h> |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 41 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 42 | #include <asm/cputype.h> |
| 43 | #include <asm/exception.h> |
| 44 | |
Robert Richter | 67510cc | 2015-09-21 22:58:37 +0200 | [diff] [blame] | 45 | #include "irq-gic-common.h" |
| 46 | |
Robert Richter | 9410097 | 2015-09-21 22:58:38 +0200 | [diff] [blame] | 47 | #define ITS_FLAGS_CMDQ_NEEDS_FLUSHING (1ULL << 0) |
| 48 | #define ITS_FLAGS_WORKAROUND_CAVIUM_22375 (1ULL << 1) |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 49 | #define ITS_FLAGS_WORKAROUND_CAVIUM_23144 (1ULL << 2) |
Derek Basehore | dba0bc7 | 2018-02-28 21:48:18 -0800 | [diff] [blame] | 50 | #define ITS_FLAGS_SAVE_SUSPEND_STATE (1ULL << 3) |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 51 | |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 52 | #define RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING (1 << 0) |
| 53 | |
Marc Zyngier | a13b040 | 2016-12-19 17:15:24 +0000 | [diff] [blame] | 54 | static u32 lpi_id_bits; |
| 55 | |
| 56 | /* |
| 57 | * We allocate memory for PROPBASE to cover 2 ^ lpi_id_bits LPIs to |
| 58 | * deal with (one configuration byte per interrupt). PENDBASE has to |
| 59 | * be 64kB aligned (one bit per LPI, plus 8192 bits for SPI/PPI/SGI). |
| 60 | */ |
| 61 | #define LPI_NRBITS lpi_id_bits |
| 62 | #define LPI_PROPBASE_SZ ALIGN(BIT(LPI_NRBITS), SZ_64K) |
| 63 | #define LPI_PENDBASE_SZ ALIGN(BIT(LPI_NRBITS) / 8, SZ_64K) |
| 64 | |
| 65 | #define LPI_PROP_DEFAULT_PRIO 0xa0 |
| 66 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 67 | /* |
| 68 | * Collection structure - just an ID, and a redistributor address to |
| 69 | * ping. We use one per CPU as a bag of interrupts assigned to this |
| 70 | * CPU. |
| 71 | */ |
| 72 | struct its_collection { |
| 73 | u64 target_address; |
| 74 | u16 col_id; |
| 75 | }; |
| 76 | |
| 77 | /* |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 78 | * The ITS_BASER structure - contains memory information, cached |
| 79 | * value of BASER register configuration and ITS page size. |
Shanker Donthineni | 466b7d1 | 2016-03-09 22:10:49 -0600 | [diff] [blame] | 80 | */ |
| 81 | struct its_baser { |
| 82 | void *base; |
| 83 | u64 val; |
| 84 | u32 order; |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 85 | u32 psz; |
Shanker Donthineni | 466b7d1 | 2016-03-09 22:10:49 -0600 | [diff] [blame] | 86 | }; |
| 87 | |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 88 | struct its_device; |
| 89 | |
Shanker Donthineni | 466b7d1 | 2016-03-09 22:10:49 -0600 | [diff] [blame] | 90 | /* |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 91 | * The ITS structure - contains most of the infrastructure, with the |
Marc Zyngier | 841514a | 2015-07-28 14:46:20 +0100 | [diff] [blame] | 92 | * top-level MSI domain, the command queue, the collections, and the |
| 93 | * list of devices writing to it. |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 94 | */ |
| 95 | struct its_node { |
| 96 | raw_spinlock_t lock; |
| 97 | struct list_head entry; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 98 | void __iomem *base; |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 99 | phys_addr_t phys_base; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 100 | struct its_cmd_block *cmd_base; |
| 101 | struct its_cmd_block *cmd_write; |
Shanker Donthineni | 466b7d1 | 2016-03-09 22:10:49 -0600 | [diff] [blame] | 102 | struct its_baser tables[GITS_BASER_NR_REGS]; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 103 | struct its_collection *collections; |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 104 | struct fwnode_handle *fwnode_handle; |
| 105 | u64 (*get_msi_base)(struct its_device *its_dev); |
Derek Basehore | dba0bc7 | 2018-02-28 21:48:18 -0800 | [diff] [blame] | 106 | u64 cbaser_save; |
| 107 | u32 ctlr_save; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 108 | struct list_head its_device_list; |
| 109 | u64 flags; |
Marc Zyngier | debf6d0 | 2017-10-08 18:44:42 +0100 | [diff] [blame] | 110 | unsigned long list_nr; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 111 | u32 ite_size; |
Shanker Donthineni | 466b7d1 | 2016-03-09 22:10:49 -0600 | [diff] [blame] | 112 | u32 device_ids; |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 113 | int numa_node; |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 114 | unsigned int msi_domain_flags; |
| 115 | u32 pre_its_base; /* for Socionext Synquacer */ |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 116 | bool is_v4; |
Marc Zyngier | 5c9a882 | 2017-07-28 21:20:37 +0100 | [diff] [blame] | 117 | int vlpi_redist_offset; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | #define ITS_ITT_ALIGN SZ_256 |
| 121 | |
Shanker Donthineni | 32bd44d | 2017-10-07 15:43:48 -0500 | [diff] [blame] | 122 | /* The maximum number of VPEID bits supported by VLPI commands */ |
| 123 | #define ITS_MAX_VPEID_BITS (16) |
| 124 | #define ITS_MAX_VPEID (1 << (ITS_MAX_VPEID_BITS)) |
| 125 | |
Shanker Donthineni | 2eca0d6 | 2016-02-16 18:00:36 -0600 | [diff] [blame] | 126 | /* Convert page order to size in bytes */ |
| 127 | #define PAGE_ORDER_TO_SIZE(o) (PAGE_SIZE << (o)) |
| 128 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 129 | struct event_lpi_map { |
| 130 | unsigned long *lpi_map; |
| 131 | u16 *col_map; |
| 132 | irq_hw_number_t lpi_base; |
| 133 | int nr_lpis; |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 134 | struct mutex vlpi_lock; |
| 135 | struct its_vm *vm; |
| 136 | struct its_vlpi_map *vlpi_maps; |
| 137 | int nr_vlpis; |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 138 | }; |
| 139 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 140 | /* |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 141 | * The ITS view of a device - belongs to an ITS, owns an interrupt |
| 142 | * translation table, and a list of interrupts. If it some of its |
| 143 | * LPIs are injected into a guest (GICv4), the event_map.vm field |
| 144 | * indicates which one. |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 145 | */ |
| 146 | struct its_device { |
| 147 | struct list_head entry; |
| 148 | struct its_node *its; |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 149 | struct event_lpi_map event_map; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 150 | void *itt; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 151 | u32 nr_ites; |
| 152 | u32 device_id; |
| 153 | }; |
| 154 | |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 155 | static struct { |
| 156 | raw_spinlock_t lock; |
| 157 | struct its_device *dev; |
| 158 | struct its_vpe **vpes; |
| 159 | int next_victim; |
| 160 | } vpe_proxy; |
| 161 | |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 162 | static LIST_HEAD(its_nodes); |
| 163 | static DEFINE_SPINLOCK(its_lock); |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 164 | static struct rdists *gic_rdists; |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 165 | static struct irq_domain *its_parent; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 166 | |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 167 | static unsigned long its_list_map; |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 168 | static u16 vmovp_seq_num; |
| 169 | static DEFINE_RAW_SPINLOCK(vmovp_lock); |
| 170 | |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 171 | static DEFINE_IDA(its_vpeid_ida); |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 172 | |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 173 | #define gic_data_rdist() (raw_cpu_ptr(gic_rdists->rdist)) |
| 174 | #define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base) |
Marc Zyngier | e643d80 | 2016-12-20 15:09:31 +0000 | [diff] [blame] | 175 | #define gic_data_rdist_vlpi_base() (gic_data_rdist_rd_base() + SZ_128K) |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 176 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 177 | static struct its_collection *dev_event_to_col(struct its_device *its_dev, |
| 178 | u32 event) |
| 179 | { |
| 180 | struct its_node *its = its_dev->its; |
| 181 | |
| 182 | return its->collections + its_dev->event_map.col_map[event]; |
| 183 | } |
| 184 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 185 | /* |
| 186 | * ITS command descriptors - parameters to be encoded in a command |
| 187 | * block. |
| 188 | */ |
| 189 | struct its_cmd_desc { |
| 190 | union { |
| 191 | struct { |
| 192 | struct its_device *dev; |
| 193 | u32 event_id; |
| 194 | } its_inv_cmd; |
| 195 | |
| 196 | struct { |
| 197 | struct its_device *dev; |
| 198 | u32 event_id; |
Marc Zyngier | 8d85dce | 2016-12-19 18:02:13 +0000 | [diff] [blame] | 199 | } its_clear_cmd; |
| 200 | |
| 201 | struct { |
| 202 | struct its_device *dev; |
| 203 | u32 event_id; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 204 | } its_int_cmd; |
| 205 | |
| 206 | struct { |
| 207 | struct its_device *dev; |
| 208 | int valid; |
| 209 | } its_mapd_cmd; |
| 210 | |
| 211 | struct { |
| 212 | struct its_collection *col; |
| 213 | int valid; |
| 214 | } its_mapc_cmd; |
| 215 | |
| 216 | struct { |
| 217 | struct its_device *dev; |
| 218 | u32 phys_id; |
| 219 | u32 event_id; |
Marc Zyngier | 6a25ad3 | 2016-12-20 15:52:26 +0000 | [diff] [blame] | 220 | } its_mapti_cmd; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 221 | |
| 222 | struct { |
| 223 | struct its_device *dev; |
| 224 | struct its_collection *col; |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 225 | u32 event_id; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 226 | } its_movi_cmd; |
| 227 | |
| 228 | struct { |
| 229 | struct its_device *dev; |
| 230 | u32 event_id; |
| 231 | } its_discard_cmd; |
| 232 | |
| 233 | struct { |
| 234 | struct its_collection *col; |
| 235 | } its_invall_cmd; |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 236 | |
| 237 | struct { |
| 238 | struct its_vpe *vpe; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 239 | } its_vinvall_cmd; |
| 240 | |
| 241 | struct { |
| 242 | struct its_vpe *vpe; |
| 243 | struct its_collection *col; |
| 244 | bool valid; |
| 245 | } its_vmapp_cmd; |
| 246 | |
| 247 | struct { |
| 248 | struct its_vpe *vpe; |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 249 | struct its_device *dev; |
| 250 | u32 virt_id; |
| 251 | u32 event_id; |
| 252 | bool db_enabled; |
| 253 | } its_vmapti_cmd; |
| 254 | |
| 255 | struct { |
| 256 | struct its_vpe *vpe; |
| 257 | struct its_device *dev; |
| 258 | u32 event_id; |
| 259 | bool db_enabled; |
| 260 | } its_vmovi_cmd; |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 261 | |
| 262 | struct { |
| 263 | struct its_vpe *vpe; |
| 264 | struct its_collection *col; |
| 265 | u16 seq_num; |
| 266 | u16 its_list; |
| 267 | } its_vmovp_cmd; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 268 | }; |
| 269 | }; |
| 270 | |
| 271 | /* |
| 272 | * The ITS command block, which is what the ITS actually parses. |
| 273 | */ |
| 274 | struct its_cmd_block { |
| 275 | u64 raw_cmd[4]; |
| 276 | }; |
| 277 | |
| 278 | #define ITS_CMD_QUEUE_SZ SZ_64K |
| 279 | #define ITS_CMD_QUEUE_NR_ENTRIES (ITS_CMD_QUEUE_SZ / sizeof(struct its_cmd_block)) |
| 280 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 281 | typedef struct its_collection *(*its_cmd_builder_t)(struct its_node *, |
| 282 | struct its_cmd_block *, |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 283 | struct its_cmd_desc *); |
| 284 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 285 | typedef struct its_vpe *(*its_cmd_vbuilder_t)(struct its_node *, |
| 286 | struct its_cmd_block *, |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 287 | struct its_cmd_desc *); |
| 288 | |
Marc Zyngier | 4d36f13 | 2016-12-19 17:11:52 +0000 | [diff] [blame] | 289 | static void its_mask_encode(u64 *raw_cmd, u64 val, int h, int l) |
| 290 | { |
| 291 | u64 mask = GENMASK_ULL(h, l); |
| 292 | *raw_cmd &= ~mask; |
| 293 | *raw_cmd |= (val << l) & mask; |
| 294 | } |
| 295 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 296 | static void its_encode_cmd(struct its_cmd_block *cmd, u8 cmd_nr) |
| 297 | { |
Marc Zyngier | 4d36f13 | 2016-12-19 17:11:52 +0000 | [diff] [blame] | 298 | its_mask_encode(&cmd->raw_cmd[0], cmd_nr, 7, 0); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | static void its_encode_devid(struct its_cmd_block *cmd, u32 devid) |
| 302 | { |
Marc Zyngier | 4d36f13 | 2016-12-19 17:11:52 +0000 | [diff] [blame] | 303 | its_mask_encode(&cmd->raw_cmd[0], devid, 63, 32); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | static void its_encode_event_id(struct its_cmd_block *cmd, u32 id) |
| 307 | { |
Marc Zyngier | 4d36f13 | 2016-12-19 17:11:52 +0000 | [diff] [blame] | 308 | its_mask_encode(&cmd->raw_cmd[1], id, 31, 0); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | static void its_encode_phys_id(struct its_cmd_block *cmd, u32 phys_id) |
| 312 | { |
Marc Zyngier | 4d36f13 | 2016-12-19 17:11:52 +0000 | [diff] [blame] | 313 | its_mask_encode(&cmd->raw_cmd[1], phys_id, 63, 32); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | static void its_encode_size(struct its_cmd_block *cmd, u8 size) |
| 317 | { |
Marc Zyngier | 4d36f13 | 2016-12-19 17:11:52 +0000 | [diff] [blame] | 318 | its_mask_encode(&cmd->raw_cmd[1], size, 4, 0); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | static void its_encode_itt(struct its_cmd_block *cmd, u64 itt_addr) |
| 322 | { |
Shanker Donthineni | 30ae961 | 2017-10-09 11:46:55 -0500 | [diff] [blame] | 323 | its_mask_encode(&cmd->raw_cmd[2], itt_addr >> 8, 51, 8); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | static void its_encode_valid(struct its_cmd_block *cmd, int valid) |
| 327 | { |
Marc Zyngier | 4d36f13 | 2016-12-19 17:11:52 +0000 | [diff] [blame] | 328 | its_mask_encode(&cmd->raw_cmd[2], !!valid, 63, 63); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | static void its_encode_target(struct its_cmd_block *cmd, u64 target_addr) |
| 332 | { |
Shanker Donthineni | 30ae961 | 2017-10-09 11:46:55 -0500 | [diff] [blame] | 333 | its_mask_encode(&cmd->raw_cmd[2], target_addr >> 16, 51, 16); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | static void its_encode_collection(struct its_cmd_block *cmd, u16 col) |
| 337 | { |
Marc Zyngier | 4d36f13 | 2016-12-19 17:11:52 +0000 | [diff] [blame] | 338 | its_mask_encode(&cmd->raw_cmd[2], col, 15, 0); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 339 | } |
| 340 | |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 341 | static void its_encode_vpeid(struct its_cmd_block *cmd, u16 vpeid) |
| 342 | { |
| 343 | its_mask_encode(&cmd->raw_cmd[1], vpeid, 47, 32); |
| 344 | } |
| 345 | |
| 346 | static void its_encode_virt_id(struct its_cmd_block *cmd, u32 virt_id) |
| 347 | { |
| 348 | its_mask_encode(&cmd->raw_cmd[2], virt_id, 31, 0); |
| 349 | } |
| 350 | |
| 351 | static void its_encode_db_phys_id(struct its_cmd_block *cmd, u32 db_phys_id) |
| 352 | { |
| 353 | its_mask_encode(&cmd->raw_cmd[2], db_phys_id, 63, 32); |
| 354 | } |
| 355 | |
| 356 | static void its_encode_db_valid(struct its_cmd_block *cmd, bool db_valid) |
| 357 | { |
| 358 | its_mask_encode(&cmd->raw_cmd[2], db_valid, 0, 0); |
| 359 | } |
| 360 | |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 361 | static void its_encode_seq_num(struct its_cmd_block *cmd, u16 seq_num) |
| 362 | { |
| 363 | its_mask_encode(&cmd->raw_cmd[0], seq_num, 47, 32); |
| 364 | } |
| 365 | |
| 366 | static void its_encode_its_list(struct its_cmd_block *cmd, u16 its_list) |
| 367 | { |
| 368 | its_mask_encode(&cmd->raw_cmd[1], its_list, 15, 0); |
| 369 | } |
| 370 | |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 371 | static void its_encode_vpt_addr(struct its_cmd_block *cmd, u64 vpt_pa) |
| 372 | { |
Shanker Donthineni | 30ae961 | 2017-10-09 11:46:55 -0500 | [diff] [blame] | 373 | its_mask_encode(&cmd->raw_cmd[3], vpt_pa >> 16, 51, 16); |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | static void its_encode_vpt_size(struct its_cmd_block *cmd, u8 vpt_size) |
| 377 | { |
| 378 | its_mask_encode(&cmd->raw_cmd[3], vpt_size, 4, 0); |
| 379 | } |
| 380 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 381 | static inline void its_fixup_cmd(struct its_cmd_block *cmd) |
| 382 | { |
| 383 | /* Let's fixup BE commands */ |
| 384 | cmd->raw_cmd[0] = cpu_to_le64(cmd->raw_cmd[0]); |
| 385 | cmd->raw_cmd[1] = cpu_to_le64(cmd->raw_cmd[1]); |
| 386 | cmd->raw_cmd[2] = cpu_to_le64(cmd->raw_cmd[2]); |
| 387 | cmd->raw_cmd[3] = cpu_to_le64(cmd->raw_cmd[3]); |
| 388 | } |
| 389 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 390 | static struct its_collection *its_build_mapd_cmd(struct its_node *its, |
| 391 | struct its_cmd_block *cmd, |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 392 | struct its_cmd_desc *desc) |
| 393 | { |
| 394 | unsigned long itt_addr; |
Marc Zyngier | c848126 | 2014-12-12 10:51:24 +0000 | [diff] [blame] | 395 | u8 size = ilog2(desc->its_mapd_cmd.dev->nr_ites); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 396 | |
| 397 | itt_addr = virt_to_phys(desc->its_mapd_cmd.dev->itt); |
| 398 | itt_addr = ALIGN(itt_addr, ITS_ITT_ALIGN); |
| 399 | |
| 400 | its_encode_cmd(cmd, GITS_CMD_MAPD); |
| 401 | its_encode_devid(cmd, desc->its_mapd_cmd.dev->device_id); |
| 402 | its_encode_size(cmd, size - 1); |
| 403 | its_encode_itt(cmd, itt_addr); |
| 404 | its_encode_valid(cmd, desc->its_mapd_cmd.valid); |
| 405 | |
| 406 | its_fixup_cmd(cmd); |
| 407 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 408 | return NULL; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 411 | static struct its_collection *its_build_mapc_cmd(struct its_node *its, |
| 412 | struct its_cmd_block *cmd, |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 413 | struct its_cmd_desc *desc) |
| 414 | { |
| 415 | its_encode_cmd(cmd, GITS_CMD_MAPC); |
| 416 | its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id); |
| 417 | its_encode_target(cmd, desc->its_mapc_cmd.col->target_address); |
| 418 | its_encode_valid(cmd, desc->its_mapc_cmd.valid); |
| 419 | |
| 420 | its_fixup_cmd(cmd); |
| 421 | |
| 422 | return desc->its_mapc_cmd.col; |
| 423 | } |
| 424 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 425 | static struct its_collection *its_build_mapti_cmd(struct its_node *its, |
| 426 | struct its_cmd_block *cmd, |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 427 | struct its_cmd_desc *desc) |
| 428 | { |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 429 | struct its_collection *col; |
| 430 | |
Marc Zyngier | 6a25ad3 | 2016-12-20 15:52:26 +0000 | [diff] [blame] | 431 | col = dev_event_to_col(desc->its_mapti_cmd.dev, |
| 432 | desc->its_mapti_cmd.event_id); |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 433 | |
Marc Zyngier | 6a25ad3 | 2016-12-20 15:52:26 +0000 | [diff] [blame] | 434 | its_encode_cmd(cmd, GITS_CMD_MAPTI); |
| 435 | its_encode_devid(cmd, desc->its_mapti_cmd.dev->device_id); |
| 436 | its_encode_event_id(cmd, desc->its_mapti_cmd.event_id); |
| 437 | its_encode_phys_id(cmd, desc->its_mapti_cmd.phys_id); |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 438 | its_encode_collection(cmd, col->col_id); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 439 | |
| 440 | its_fixup_cmd(cmd); |
| 441 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 442 | return col; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 443 | } |
| 444 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 445 | static struct its_collection *its_build_movi_cmd(struct its_node *its, |
| 446 | struct its_cmd_block *cmd, |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 447 | struct its_cmd_desc *desc) |
| 448 | { |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 449 | struct its_collection *col; |
| 450 | |
| 451 | col = dev_event_to_col(desc->its_movi_cmd.dev, |
| 452 | desc->its_movi_cmd.event_id); |
| 453 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 454 | its_encode_cmd(cmd, GITS_CMD_MOVI); |
| 455 | its_encode_devid(cmd, desc->its_movi_cmd.dev->device_id); |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 456 | its_encode_event_id(cmd, desc->its_movi_cmd.event_id); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 457 | its_encode_collection(cmd, desc->its_movi_cmd.col->col_id); |
| 458 | |
| 459 | its_fixup_cmd(cmd); |
| 460 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 461 | return col; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 462 | } |
| 463 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 464 | static struct its_collection *its_build_discard_cmd(struct its_node *its, |
| 465 | struct its_cmd_block *cmd, |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 466 | struct its_cmd_desc *desc) |
| 467 | { |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 468 | struct its_collection *col; |
| 469 | |
| 470 | col = dev_event_to_col(desc->its_discard_cmd.dev, |
| 471 | desc->its_discard_cmd.event_id); |
| 472 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 473 | its_encode_cmd(cmd, GITS_CMD_DISCARD); |
| 474 | its_encode_devid(cmd, desc->its_discard_cmd.dev->device_id); |
| 475 | its_encode_event_id(cmd, desc->its_discard_cmd.event_id); |
| 476 | |
| 477 | its_fixup_cmd(cmd); |
| 478 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 479 | return col; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 480 | } |
| 481 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 482 | static struct its_collection *its_build_inv_cmd(struct its_node *its, |
| 483 | struct its_cmd_block *cmd, |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 484 | struct its_cmd_desc *desc) |
| 485 | { |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 486 | struct its_collection *col; |
| 487 | |
| 488 | col = dev_event_to_col(desc->its_inv_cmd.dev, |
| 489 | desc->its_inv_cmd.event_id); |
| 490 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 491 | its_encode_cmd(cmd, GITS_CMD_INV); |
| 492 | its_encode_devid(cmd, desc->its_inv_cmd.dev->device_id); |
| 493 | its_encode_event_id(cmd, desc->its_inv_cmd.event_id); |
| 494 | |
| 495 | its_fixup_cmd(cmd); |
| 496 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 497 | return col; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 498 | } |
| 499 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 500 | static struct its_collection *its_build_int_cmd(struct its_node *its, |
| 501 | struct its_cmd_block *cmd, |
Marc Zyngier | 8d85dce | 2016-12-19 18:02:13 +0000 | [diff] [blame] | 502 | struct its_cmd_desc *desc) |
| 503 | { |
| 504 | struct its_collection *col; |
| 505 | |
| 506 | col = dev_event_to_col(desc->its_int_cmd.dev, |
| 507 | desc->its_int_cmd.event_id); |
| 508 | |
| 509 | its_encode_cmd(cmd, GITS_CMD_INT); |
| 510 | its_encode_devid(cmd, desc->its_int_cmd.dev->device_id); |
| 511 | its_encode_event_id(cmd, desc->its_int_cmd.event_id); |
| 512 | |
| 513 | its_fixup_cmd(cmd); |
| 514 | |
| 515 | return col; |
| 516 | } |
| 517 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 518 | static struct its_collection *its_build_clear_cmd(struct its_node *its, |
| 519 | struct its_cmd_block *cmd, |
Marc Zyngier | 8d85dce | 2016-12-19 18:02:13 +0000 | [diff] [blame] | 520 | struct its_cmd_desc *desc) |
| 521 | { |
| 522 | struct its_collection *col; |
| 523 | |
| 524 | col = dev_event_to_col(desc->its_clear_cmd.dev, |
| 525 | desc->its_clear_cmd.event_id); |
| 526 | |
| 527 | its_encode_cmd(cmd, GITS_CMD_CLEAR); |
| 528 | its_encode_devid(cmd, desc->its_clear_cmd.dev->device_id); |
| 529 | its_encode_event_id(cmd, desc->its_clear_cmd.event_id); |
| 530 | |
| 531 | its_fixup_cmd(cmd); |
| 532 | |
| 533 | return col; |
| 534 | } |
| 535 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 536 | static struct its_collection *its_build_invall_cmd(struct its_node *its, |
| 537 | struct its_cmd_block *cmd, |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 538 | struct its_cmd_desc *desc) |
| 539 | { |
| 540 | its_encode_cmd(cmd, GITS_CMD_INVALL); |
| 541 | its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id); |
| 542 | |
| 543 | its_fixup_cmd(cmd); |
| 544 | |
| 545 | return NULL; |
| 546 | } |
| 547 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 548 | static struct its_vpe *its_build_vinvall_cmd(struct its_node *its, |
| 549 | struct its_cmd_block *cmd, |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 550 | struct its_cmd_desc *desc) |
| 551 | { |
| 552 | its_encode_cmd(cmd, GITS_CMD_VINVALL); |
| 553 | its_encode_vpeid(cmd, desc->its_vinvall_cmd.vpe->vpe_id); |
| 554 | |
| 555 | its_fixup_cmd(cmd); |
| 556 | |
| 557 | return desc->its_vinvall_cmd.vpe; |
| 558 | } |
| 559 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 560 | static struct its_vpe *its_build_vmapp_cmd(struct its_node *its, |
| 561 | struct its_cmd_block *cmd, |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 562 | struct its_cmd_desc *desc) |
| 563 | { |
| 564 | unsigned long vpt_addr; |
Marc Zyngier | 5c9a882 | 2017-07-28 21:20:37 +0100 | [diff] [blame] | 565 | u64 target; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 566 | |
| 567 | vpt_addr = virt_to_phys(page_address(desc->its_vmapp_cmd.vpe->vpt_page)); |
Marc Zyngier | 5c9a882 | 2017-07-28 21:20:37 +0100 | [diff] [blame] | 568 | target = desc->its_vmapp_cmd.col->target_address + its->vlpi_redist_offset; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 569 | |
| 570 | its_encode_cmd(cmd, GITS_CMD_VMAPP); |
| 571 | its_encode_vpeid(cmd, desc->its_vmapp_cmd.vpe->vpe_id); |
| 572 | its_encode_valid(cmd, desc->its_vmapp_cmd.valid); |
Marc Zyngier | 5c9a882 | 2017-07-28 21:20:37 +0100 | [diff] [blame] | 573 | its_encode_target(cmd, target); |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 574 | its_encode_vpt_addr(cmd, vpt_addr); |
| 575 | its_encode_vpt_size(cmd, LPI_NRBITS - 1); |
| 576 | |
| 577 | its_fixup_cmd(cmd); |
| 578 | |
| 579 | return desc->its_vmapp_cmd.vpe; |
| 580 | } |
| 581 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 582 | static struct its_vpe *its_build_vmapti_cmd(struct its_node *its, |
| 583 | struct its_cmd_block *cmd, |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 584 | struct its_cmd_desc *desc) |
| 585 | { |
| 586 | u32 db; |
| 587 | |
| 588 | if (desc->its_vmapti_cmd.db_enabled) |
| 589 | db = desc->its_vmapti_cmd.vpe->vpe_db_lpi; |
| 590 | else |
| 591 | db = 1023; |
| 592 | |
| 593 | its_encode_cmd(cmd, GITS_CMD_VMAPTI); |
| 594 | its_encode_devid(cmd, desc->its_vmapti_cmd.dev->device_id); |
| 595 | its_encode_vpeid(cmd, desc->its_vmapti_cmd.vpe->vpe_id); |
| 596 | its_encode_event_id(cmd, desc->its_vmapti_cmd.event_id); |
| 597 | its_encode_db_phys_id(cmd, db); |
| 598 | its_encode_virt_id(cmd, desc->its_vmapti_cmd.virt_id); |
| 599 | |
| 600 | its_fixup_cmd(cmd); |
| 601 | |
| 602 | return desc->its_vmapti_cmd.vpe; |
| 603 | } |
| 604 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 605 | static struct its_vpe *its_build_vmovi_cmd(struct its_node *its, |
| 606 | struct its_cmd_block *cmd, |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 607 | struct its_cmd_desc *desc) |
| 608 | { |
| 609 | u32 db; |
| 610 | |
| 611 | if (desc->its_vmovi_cmd.db_enabled) |
| 612 | db = desc->its_vmovi_cmd.vpe->vpe_db_lpi; |
| 613 | else |
| 614 | db = 1023; |
| 615 | |
| 616 | its_encode_cmd(cmd, GITS_CMD_VMOVI); |
| 617 | its_encode_devid(cmd, desc->its_vmovi_cmd.dev->device_id); |
| 618 | its_encode_vpeid(cmd, desc->its_vmovi_cmd.vpe->vpe_id); |
| 619 | its_encode_event_id(cmd, desc->its_vmovi_cmd.event_id); |
| 620 | its_encode_db_phys_id(cmd, db); |
| 621 | its_encode_db_valid(cmd, true); |
| 622 | |
| 623 | its_fixup_cmd(cmd); |
| 624 | |
| 625 | return desc->its_vmovi_cmd.vpe; |
| 626 | } |
| 627 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 628 | static struct its_vpe *its_build_vmovp_cmd(struct its_node *its, |
| 629 | struct its_cmd_block *cmd, |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 630 | struct its_cmd_desc *desc) |
| 631 | { |
Marc Zyngier | 5c9a882 | 2017-07-28 21:20:37 +0100 | [diff] [blame] | 632 | u64 target; |
| 633 | |
| 634 | target = desc->its_vmovp_cmd.col->target_address + its->vlpi_redist_offset; |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 635 | its_encode_cmd(cmd, GITS_CMD_VMOVP); |
| 636 | its_encode_seq_num(cmd, desc->its_vmovp_cmd.seq_num); |
| 637 | its_encode_its_list(cmd, desc->its_vmovp_cmd.its_list); |
| 638 | its_encode_vpeid(cmd, desc->its_vmovp_cmd.vpe->vpe_id); |
Marc Zyngier | 5c9a882 | 2017-07-28 21:20:37 +0100 | [diff] [blame] | 639 | its_encode_target(cmd, target); |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 640 | |
| 641 | its_fixup_cmd(cmd); |
| 642 | |
| 643 | return desc->its_vmovp_cmd.vpe; |
| 644 | } |
| 645 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 646 | static u64 its_cmd_ptr_to_offset(struct its_node *its, |
| 647 | struct its_cmd_block *ptr) |
| 648 | { |
| 649 | return (ptr - its->cmd_base) * sizeof(*ptr); |
| 650 | } |
| 651 | |
| 652 | static int its_queue_full(struct its_node *its) |
| 653 | { |
| 654 | int widx; |
| 655 | int ridx; |
| 656 | |
| 657 | widx = its->cmd_write - its->cmd_base; |
| 658 | ridx = readl_relaxed(its->base + GITS_CREADR) / sizeof(struct its_cmd_block); |
| 659 | |
| 660 | /* This is incredibly unlikely to happen, unless the ITS locks up. */ |
| 661 | if (((widx + 1) % ITS_CMD_QUEUE_NR_ENTRIES) == ridx) |
| 662 | return 1; |
| 663 | |
| 664 | return 0; |
| 665 | } |
| 666 | |
| 667 | static struct its_cmd_block *its_allocate_entry(struct its_node *its) |
| 668 | { |
| 669 | struct its_cmd_block *cmd; |
| 670 | u32 count = 1000000; /* 1s! */ |
| 671 | |
| 672 | while (its_queue_full(its)) { |
| 673 | count--; |
| 674 | if (!count) { |
| 675 | pr_err_ratelimited("ITS queue not draining\n"); |
| 676 | return NULL; |
| 677 | } |
| 678 | cpu_relax(); |
| 679 | udelay(1); |
| 680 | } |
| 681 | |
| 682 | cmd = its->cmd_write++; |
| 683 | |
| 684 | /* Handle queue wrapping */ |
| 685 | if (its->cmd_write == (its->cmd_base + ITS_CMD_QUEUE_NR_ENTRIES)) |
| 686 | its->cmd_write = its->cmd_base; |
| 687 | |
Marc Zyngier | 34d677a | 2016-12-19 17:16:45 +0000 | [diff] [blame] | 688 | /* Clear command */ |
| 689 | cmd->raw_cmd[0] = 0; |
| 690 | cmd->raw_cmd[1] = 0; |
| 691 | cmd->raw_cmd[2] = 0; |
| 692 | cmd->raw_cmd[3] = 0; |
| 693 | |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 694 | return cmd; |
| 695 | } |
| 696 | |
| 697 | static struct its_cmd_block *its_post_commands(struct its_node *its) |
| 698 | { |
| 699 | u64 wr = its_cmd_ptr_to_offset(its, its->cmd_write); |
| 700 | |
| 701 | writel_relaxed(wr, its->base + GITS_CWRITER); |
| 702 | |
| 703 | return its->cmd_write; |
| 704 | } |
| 705 | |
| 706 | static void its_flush_cmd(struct its_node *its, struct its_cmd_block *cmd) |
| 707 | { |
| 708 | /* |
| 709 | * Make sure the commands written to memory are observable by |
| 710 | * the ITS. |
| 711 | */ |
| 712 | if (its->flags & ITS_FLAGS_CMDQ_NEEDS_FLUSHING) |
Vladimir Murzin | 328191c | 2016-11-02 11:54:05 +0000 | [diff] [blame] | 713 | gic_flush_dcache_to_poc(cmd, sizeof(*cmd)); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 714 | else |
| 715 | dsb(ishst); |
| 716 | } |
| 717 | |
Marc Zyngier | a19b462 | 2017-08-04 17:45:50 +0100 | [diff] [blame] | 718 | static int its_wait_for_range_completion(struct its_node *its, |
| 719 | struct its_cmd_block *from, |
| 720 | struct its_cmd_block *to) |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 721 | { |
| 722 | u64 rd_idx, from_idx, to_idx; |
| 723 | u32 count = 1000000; /* 1s! */ |
| 724 | |
| 725 | from_idx = its_cmd_ptr_to_offset(its, from); |
| 726 | to_idx = its_cmd_ptr_to_offset(its, to); |
| 727 | |
| 728 | while (1) { |
| 729 | rd_idx = readl_relaxed(its->base + GITS_CREADR); |
Marc Zyngier | 9bdd8b1 | 2017-08-19 10:16:02 +0100 | [diff] [blame] | 730 | |
| 731 | /* Direct case */ |
| 732 | if (from_idx < to_idx && rd_idx >= to_idx) |
| 733 | break; |
| 734 | |
| 735 | /* Wrapped case */ |
| 736 | if (from_idx >= to_idx && rd_idx >= to_idx && rd_idx < from_idx) |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 737 | break; |
| 738 | |
| 739 | count--; |
| 740 | if (!count) { |
Marc Zyngier | a19b462 | 2017-08-04 17:45:50 +0100 | [diff] [blame] | 741 | pr_err_ratelimited("ITS queue timeout (%llu %llu %llu)\n", |
| 742 | from_idx, to_idx, rd_idx); |
| 743 | return -1; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 744 | } |
| 745 | cpu_relax(); |
| 746 | udelay(1); |
| 747 | } |
Marc Zyngier | a19b462 | 2017-08-04 17:45:50 +0100 | [diff] [blame] | 748 | |
| 749 | return 0; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 750 | } |
| 751 | |
Marc Zyngier | e4f9094 | 2016-12-19 17:56:32 +0000 | [diff] [blame] | 752 | /* Warning, macro hell follows */ |
| 753 | #define BUILD_SINGLE_CMD_FUNC(name, buildtype, synctype, buildfn) \ |
| 754 | void name(struct its_node *its, \ |
| 755 | buildtype builder, \ |
| 756 | struct its_cmd_desc *desc) \ |
| 757 | { \ |
| 758 | struct its_cmd_block *cmd, *sync_cmd, *next_cmd; \ |
| 759 | synctype *sync_obj; \ |
| 760 | unsigned long flags; \ |
| 761 | \ |
| 762 | raw_spin_lock_irqsave(&its->lock, flags); \ |
| 763 | \ |
| 764 | cmd = its_allocate_entry(its); \ |
| 765 | if (!cmd) { /* We're soooooo screewed... */ \ |
| 766 | raw_spin_unlock_irqrestore(&its->lock, flags); \ |
| 767 | return; \ |
| 768 | } \ |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 769 | sync_obj = builder(its, cmd, desc); \ |
Marc Zyngier | e4f9094 | 2016-12-19 17:56:32 +0000 | [diff] [blame] | 770 | its_flush_cmd(its, cmd); \ |
| 771 | \ |
| 772 | if (sync_obj) { \ |
| 773 | sync_cmd = its_allocate_entry(its); \ |
| 774 | if (!sync_cmd) \ |
| 775 | goto post; \ |
| 776 | \ |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 777 | buildfn(its, sync_cmd, sync_obj); \ |
Marc Zyngier | e4f9094 | 2016-12-19 17:56:32 +0000 | [diff] [blame] | 778 | its_flush_cmd(its, sync_cmd); \ |
| 779 | } \ |
| 780 | \ |
| 781 | post: \ |
| 782 | next_cmd = its_post_commands(its); \ |
| 783 | raw_spin_unlock_irqrestore(&its->lock, flags); \ |
| 784 | \ |
Marc Zyngier | a19b462 | 2017-08-04 17:45:50 +0100 | [diff] [blame] | 785 | if (its_wait_for_range_completion(its, cmd, next_cmd)) \ |
| 786 | pr_err_ratelimited("ITS cmd %ps failed\n", builder); \ |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 787 | } |
| 788 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 789 | static void its_build_sync_cmd(struct its_node *its, |
| 790 | struct its_cmd_block *sync_cmd, |
Marc Zyngier | e4f9094 | 2016-12-19 17:56:32 +0000 | [diff] [blame] | 791 | struct its_collection *sync_col) |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 792 | { |
Marc Zyngier | e4f9094 | 2016-12-19 17:56:32 +0000 | [diff] [blame] | 793 | its_encode_cmd(sync_cmd, GITS_CMD_SYNC); |
| 794 | its_encode_target(sync_cmd, sync_col->target_address); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 795 | |
Marc Zyngier | e4f9094 | 2016-12-19 17:56:32 +0000 | [diff] [blame] | 796 | its_fixup_cmd(sync_cmd); |
| 797 | } |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 798 | |
Marc Zyngier | e4f9094 | 2016-12-19 17:56:32 +0000 | [diff] [blame] | 799 | static BUILD_SINGLE_CMD_FUNC(its_send_single_command, its_cmd_builder_t, |
| 800 | struct its_collection, its_build_sync_cmd) |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 801 | |
Marc Zyngier | 67047f90 | 2017-07-28 21:16:58 +0100 | [diff] [blame] | 802 | static void its_build_vsync_cmd(struct its_node *its, |
| 803 | struct its_cmd_block *sync_cmd, |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 804 | struct its_vpe *sync_vpe) |
| 805 | { |
| 806 | its_encode_cmd(sync_cmd, GITS_CMD_VSYNC); |
| 807 | its_encode_vpeid(sync_cmd, sync_vpe->vpe_id); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 808 | |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 809 | its_fixup_cmd(sync_cmd); |
| 810 | } |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 811 | |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 812 | static BUILD_SINGLE_CMD_FUNC(its_send_single_vcommand, its_cmd_vbuilder_t, |
| 813 | struct its_vpe, its_build_vsync_cmd) |
| 814 | |
Marc Zyngier | 8d85dce | 2016-12-19 18:02:13 +0000 | [diff] [blame] | 815 | static void its_send_int(struct its_device *dev, u32 event_id) |
| 816 | { |
| 817 | struct its_cmd_desc desc; |
| 818 | |
| 819 | desc.its_int_cmd.dev = dev; |
| 820 | desc.its_int_cmd.event_id = event_id; |
| 821 | |
| 822 | its_send_single_command(dev->its, its_build_int_cmd, &desc); |
| 823 | } |
| 824 | |
| 825 | static void its_send_clear(struct its_device *dev, u32 event_id) |
| 826 | { |
| 827 | struct its_cmd_desc desc; |
| 828 | |
| 829 | desc.its_clear_cmd.dev = dev; |
| 830 | desc.its_clear_cmd.event_id = event_id; |
| 831 | |
| 832 | its_send_single_command(dev->its, its_build_clear_cmd, &desc); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | static void its_send_inv(struct its_device *dev, u32 event_id) |
| 836 | { |
| 837 | struct its_cmd_desc desc; |
| 838 | |
| 839 | desc.its_inv_cmd.dev = dev; |
| 840 | desc.its_inv_cmd.event_id = event_id; |
| 841 | |
| 842 | its_send_single_command(dev->its, its_build_inv_cmd, &desc); |
| 843 | } |
| 844 | |
| 845 | static void its_send_mapd(struct its_device *dev, int valid) |
| 846 | { |
| 847 | struct its_cmd_desc desc; |
| 848 | |
| 849 | desc.its_mapd_cmd.dev = dev; |
| 850 | desc.its_mapd_cmd.valid = !!valid; |
| 851 | |
| 852 | its_send_single_command(dev->its, its_build_mapd_cmd, &desc); |
| 853 | } |
| 854 | |
| 855 | static void its_send_mapc(struct its_node *its, struct its_collection *col, |
| 856 | int valid) |
| 857 | { |
| 858 | struct its_cmd_desc desc; |
| 859 | |
| 860 | desc.its_mapc_cmd.col = col; |
| 861 | desc.its_mapc_cmd.valid = !!valid; |
| 862 | |
| 863 | its_send_single_command(its, its_build_mapc_cmd, &desc); |
| 864 | } |
| 865 | |
Marc Zyngier | 6a25ad3 | 2016-12-20 15:52:26 +0000 | [diff] [blame] | 866 | static void its_send_mapti(struct its_device *dev, u32 irq_id, u32 id) |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 867 | { |
| 868 | struct its_cmd_desc desc; |
| 869 | |
Marc Zyngier | 6a25ad3 | 2016-12-20 15:52:26 +0000 | [diff] [blame] | 870 | desc.its_mapti_cmd.dev = dev; |
| 871 | desc.its_mapti_cmd.phys_id = irq_id; |
| 872 | desc.its_mapti_cmd.event_id = id; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 873 | |
Marc Zyngier | 6a25ad3 | 2016-12-20 15:52:26 +0000 | [diff] [blame] | 874 | its_send_single_command(dev->its, its_build_mapti_cmd, &desc); |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | static void its_send_movi(struct its_device *dev, |
| 878 | struct its_collection *col, u32 id) |
| 879 | { |
| 880 | struct its_cmd_desc desc; |
| 881 | |
| 882 | desc.its_movi_cmd.dev = dev; |
| 883 | desc.its_movi_cmd.col = col; |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 884 | desc.its_movi_cmd.event_id = id; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 885 | |
| 886 | its_send_single_command(dev->its, its_build_movi_cmd, &desc); |
| 887 | } |
| 888 | |
| 889 | static void its_send_discard(struct its_device *dev, u32 id) |
| 890 | { |
| 891 | struct its_cmd_desc desc; |
| 892 | |
| 893 | desc.its_discard_cmd.dev = dev; |
| 894 | desc.its_discard_cmd.event_id = id; |
| 895 | |
| 896 | its_send_single_command(dev->its, its_build_discard_cmd, &desc); |
| 897 | } |
| 898 | |
| 899 | static void its_send_invall(struct its_node *its, struct its_collection *col) |
| 900 | { |
| 901 | struct its_cmd_desc desc; |
| 902 | |
| 903 | desc.its_invall_cmd.col = col; |
| 904 | |
| 905 | its_send_single_command(its, its_build_invall_cmd, &desc); |
| 906 | } |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 907 | |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 908 | static void its_send_vmapti(struct its_device *dev, u32 id) |
| 909 | { |
| 910 | struct its_vlpi_map *map = &dev->event_map.vlpi_maps[id]; |
| 911 | struct its_cmd_desc desc; |
| 912 | |
| 913 | desc.its_vmapti_cmd.vpe = map->vpe; |
| 914 | desc.its_vmapti_cmd.dev = dev; |
| 915 | desc.its_vmapti_cmd.virt_id = map->vintid; |
| 916 | desc.its_vmapti_cmd.event_id = id; |
| 917 | desc.its_vmapti_cmd.db_enabled = map->db_enabled; |
| 918 | |
| 919 | its_send_single_vcommand(dev->its, its_build_vmapti_cmd, &desc); |
| 920 | } |
| 921 | |
| 922 | static void its_send_vmovi(struct its_device *dev, u32 id) |
| 923 | { |
| 924 | struct its_vlpi_map *map = &dev->event_map.vlpi_maps[id]; |
| 925 | struct its_cmd_desc desc; |
| 926 | |
| 927 | desc.its_vmovi_cmd.vpe = map->vpe; |
| 928 | desc.its_vmovi_cmd.dev = dev; |
| 929 | desc.its_vmovi_cmd.event_id = id; |
| 930 | desc.its_vmovi_cmd.db_enabled = map->db_enabled; |
| 931 | |
| 932 | its_send_single_vcommand(dev->its, its_build_vmovi_cmd, &desc); |
| 933 | } |
| 934 | |
Marc Zyngier | 75fd951 | 2017-10-08 18:46:39 +0100 | [diff] [blame] | 935 | static void its_send_vmapp(struct its_node *its, |
| 936 | struct its_vpe *vpe, bool valid) |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 937 | { |
| 938 | struct its_cmd_desc desc; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 939 | |
| 940 | desc.its_vmapp_cmd.vpe = vpe; |
| 941 | desc.its_vmapp_cmd.valid = valid; |
Marc Zyngier | 75fd951 | 2017-10-08 18:46:39 +0100 | [diff] [blame] | 942 | desc.its_vmapp_cmd.col = &its->collections[vpe->col_idx]; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 943 | |
Marc Zyngier | 75fd951 | 2017-10-08 18:46:39 +0100 | [diff] [blame] | 944 | its_send_single_vcommand(its, its_build_vmapp_cmd, &desc); |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 945 | } |
| 946 | |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 947 | static void its_send_vmovp(struct its_vpe *vpe) |
| 948 | { |
| 949 | struct its_cmd_desc desc; |
| 950 | struct its_node *its; |
| 951 | unsigned long flags; |
| 952 | int col_id = vpe->col_idx; |
| 953 | |
| 954 | desc.its_vmovp_cmd.vpe = vpe; |
| 955 | desc.its_vmovp_cmd.its_list = (u16)its_list_map; |
| 956 | |
| 957 | if (!its_list_map) { |
| 958 | its = list_first_entry(&its_nodes, struct its_node, entry); |
| 959 | desc.its_vmovp_cmd.seq_num = 0; |
| 960 | desc.its_vmovp_cmd.col = &its->collections[col_id]; |
| 961 | its_send_single_vcommand(its, its_build_vmovp_cmd, &desc); |
| 962 | return; |
| 963 | } |
| 964 | |
| 965 | /* |
| 966 | * Yet another marvel of the architecture. If using the |
| 967 | * its_list "feature", we need to make sure that all ITSs |
| 968 | * receive all VMOVP commands in the same order. The only way |
| 969 | * to guarantee this is to make vmovp a serialization point. |
| 970 | * |
| 971 | * Wall <-- Head. |
| 972 | */ |
| 973 | raw_spin_lock_irqsave(&vmovp_lock, flags); |
| 974 | |
| 975 | desc.its_vmovp_cmd.seq_num = vmovp_seq_num++; |
| 976 | |
| 977 | /* Emit VMOVPs */ |
| 978 | list_for_each_entry(its, &its_nodes, entry) { |
| 979 | if (!its->is_v4) |
| 980 | continue; |
| 981 | |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 982 | if (!vpe->its_vm->vlpi_count[its->list_nr]) |
| 983 | continue; |
| 984 | |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 985 | desc.its_vmovp_cmd.col = &its->collections[col_id]; |
| 986 | its_send_single_vcommand(its, its_build_vmovp_cmd, &desc); |
| 987 | } |
| 988 | |
| 989 | raw_spin_unlock_irqrestore(&vmovp_lock, flags); |
| 990 | } |
| 991 | |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 992 | static void its_send_vinvall(struct its_node *its, struct its_vpe *vpe) |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 993 | { |
| 994 | struct its_cmd_desc desc; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 995 | |
| 996 | desc.its_vinvall_cmd.vpe = vpe; |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 997 | its_send_single_vcommand(its, its_build_vinvall_cmd, &desc); |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 998 | } |
| 999 | |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1000 | /* |
| 1001 | * irqchip functions - assumes MSI, mostly. |
| 1002 | */ |
| 1003 | |
| 1004 | static inline u32 its_get_event_id(struct irq_data *d) |
| 1005 | { |
| 1006 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 1007 | return d->hwirq - its_dev->event_map.lpi_base; |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1008 | } |
| 1009 | |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1010 | static void lpi_write_config(struct irq_data *d, u8 clr, u8 set) |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1011 | { |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1012 | irq_hw_number_t hwirq; |
Marc Zyngier | adcdb94 | 2016-12-19 19:18:13 +0000 | [diff] [blame] | 1013 | struct page *prop_page; |
| 1014 | u8 *cfg; |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1015 | |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1016 | if (irqd_is_forwarded_to_vcpu(d)) { |
| 1017 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1018 | u32 event = its_get_event_id(d); |
Marc Zyngier | d4d7b4a | 2017-10-26 10:44:07 +0100 | [diff] [blame] | 1019 | struct its_vlpi_map *map; |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1020 | |
| 1021 | prop_page = its_dev->event_map.vm->vprop_page; |
Marc Zyngier | d4d7b4a | 2017-10-26 10:44:07 +0100 | [diff] [blame] | 1022 | map = &its_dev->event_map.vlpi_maps[event]; |
| 1023 | hwirq = map->vintid; |
| 1024 | |
| 1025 | /* Remember the updated property */ |
| 1026 | map->properties &= ~clr; |
| 1027 | map->properties |= set | LPI_PROP_GROUP1; |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1028 | } else { |
| 1029 | prop_page = gic_rdists->prop_page; |
| 1030 | hwirq = d->hwirq; |
| 1031 | } |
Marc Zyngier | adcdb94 | 2016-12-19 19:18:13 +0000 | [diff] [blame] | 1032 | |
| 1033 | cfg = page_address(prop_page) + hwirq - 8192; |
| 1034 | *cfg &= ~clr; |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1035 | *cfg |= set | LPI_PROP_GROUP1; |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1036 | |
| 1037 | /* |
| 1038 | * Make the above write visible to the redistributors. |
| 1039 | * And yes, we're flushing exactly: One. Single. Byte. |
| 1040 | * Humpf... |
| 1041 | */ |
| 1042 | if (gic_rdists->flags & RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING) |
Vladimir Murzin | 328191c | 2016-11-02 11:54:05 +0000 | [diff] [blame] | 1043 | gic_flush_dcache_to_poc(cfg, sizeof(*cfg)); |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1044 | else |
| 1045 | dsb(ishst); |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1046 | } |
| 1047 | |
| 1048 | static void lpi_update_config(struct irq_data *d, u8 clr, u8 set) |
| 1049 | { |
| 1050 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1051 | |
| 1052 | lpi_write_config(d, clr, set); |
Marc Zyngier | adcdb94 | 2016-12-19 19:18:13 +0000 | [diff] [blame] | 1053 | its_send_inv(its_dev, its_get_event_id(d)); |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1054 | } |
| 1055 | |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1056 | static void its_vlpi_set_doorbell(struct irq_data *d, bool enable) |
| 1057 | { |
| 1058 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1059 | u32 event = its_get_event_id(d); |
| 1060 | |
| 1061 | if (its_dev->event_map.vlpi_maps[event].db_enabled == enable) |
| 1062 | return; |
| 1063 | |
| 1064 | its_dev->event_map.vlpi_maps[event].db_enabled = enable; |
| 1065 | |
| 1066 | /* |
| 1067 | * More fun with the architecture: |
| 1068 | * |
| 1069 | * Ideally, we'd issue a VMAPTI to set the doorbell to its LPI |
| 1070 | * value or to 1023, depending on the enable bit. But that |
| 1071 | * would be issueing a mapping for an /existing/ DevID+EventID |
| 1072 | * pair, which is UNPREDICTABLE. Instead, let's issue a VMOVI |
| 1073 | * to the /same/ vPE, using this opportunity to adjust the |
| 1074 | * doorbell. Mouahahahaha. We loves it, Precious. |
| 1075 | */ |
| 1076 | its_send_vmovi(its_dev, event); |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | static void its_mask_irq(struct irq_data *d) |
| 1080 | { |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1081 | if (irqd_is_forwarded_to_vcpu(d)) |
| 1082 | its_vlpi_set_doorbell(d, false); |
| 1083 | |
Marc Zyngier | adcdb94 | 2016-12-19 19:18:13 +0000 | [diff] [blame] | 1084 | lpi_update_config(d, LPI_PROP_ENABLED, 0); |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | static void its_unmask_irq(struct irq_data *d) |
| 1088 | { |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1089 | if (irqd_is_forwarded_to_vcpu(d)) |
| 1090 | its_vlpi_set_doorbell(d, true); |
| 1091 | |
Marc Zyngier | adcdb94 | 2016-12-19 19:18:13 +0000 | [diff] [blame] | 1092 | lpi_update_config(d, 0, LPI_PROP_ENABLED); |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1093 | } |
| 1094 | |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1095 | static int its_set_affinity(struct irq_data *d, const struct cpumask *mask_val, |
| 1096 | bool force) |
| 1097 | { |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 1098 | unsigned int cpu; |
| 1099 | const struct cpumask *cpu_mask = cpu_online_mask; |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1100 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1101 | struct its_collection *target_col; |
| 1102 | u32 id = its_get_event_id(d); |
| 1103 | |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1104 | /* A forwarded interrupt should use irq_set_vcpu_affinity */ |
| 1105 | if (irqd_is_forwarded_to_vcpu(d)) |
| 1106 | return -EINVAL; |
| 1107 | |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 1108 | /* lpi cannot be routed to a redistributor that is on a foreign node */ |
| 1109 | if (its_dev->its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144) { |
| 1110 | if (its_dev->its->numa_node >= 0) { |
| 1111 | cpu_mask = cpumask_of_node(its_dev->its->numa_node); |
| 1112 | if (!cpumask_intersects(mask_val, cpu_mask)) |
| 1113 | return -EINVAL; |
| 1114 | } |
| 1115 | } |
| 1116 | |
| 1117 | cpu = cpumask_any_and(mask_val, cpu_mask); |
| 1118 | |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1119 | if (cpu >= nr_cpu_ids) |
| 1120 | return -EINVAL; |
| 1121 | |
MaJun | 8b8d94a | 2017-05-18 16:19:13 +0800 | [diff] [blame] | 1122 | /* don't set the affinity when the target cpu is same as current one */ |
| 1123 | if (cpu != its_dev->event_map.col_map[id]) { |
| 1124 | target_col = &its_dev->its->collections[cpu]; |
| 1125 | its_send_movi(its_dev, target_col, id); |
| 1126 | its_dev->event_map.col_map[id] = cpu; |
Marc Zyngier | 0d224d3 | 2017-08-18 09:39:18 +0100 | [diff] [blame] | 1127 | irq_data_update_effective_affinity(d, cpumask_of(cpu)); |
MaJun | 8b8d94a | 2017-05-18 16:19:13 +0800 | [diff] [blame] | 1128 | } |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1129 | |
| 1130 | return IRQ_SET_MASK_OK_DONE; |
| 1131 | } |
| 1132 | |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 1133 | static u64 its_irq_get_msi_base(struct its_device *its_dev) |
| 1134 | { |
| 1135 | struct its_node *its = its_dev->its; |
| 1136 | |
| 1137 | return its->phys_base + GITS_TRANSLATER; |
| 1138 | } |
| 1139 | |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 1140 | static void its_irq_compose_msi_msg(struct irq_data *d, struct msi_msg *msg) |
| 1141 | { |
| 1142 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1143 | struct its_node *its; |
| 1144 | u64 addr; |
| 1145 | |
| 1146 | its = its_dev->its; |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 1147 | addr = its->get_msi_base(its_dev); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 1148 | |
Vladimir Murzin | b11283e | 2016-11-02 11:54:03 +0000 | [diff] [blame] | 1149 | msg->address_lo = lower_32_bits(addr); |
| 1150 | msg->address_hi = upper_32_bits(addr); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 1151 | msg->data = its_get_event_id(d); |
Robin Murphy | 44bb7e2 | 2016-09-12 17:13:59 +0100 | [diff] [blame] | 1152 | |
| 1153 | iommu_dma_map_msi_msg(d->irq, msg); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
Marc Zyngier | 8d85dce | 2016-12-19 18:02:13 +0000 | [diff] [blame] | 1156 | static int its_irq_set_irqchip_state(struct irq_data *d, |
| 1157 | enum irqchip_irq_state which, |
| 1158 | bool state) |
| 1159 | { |
| 1160 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1161 | u32 event = its_get_event_id(d); |
| 1162 | |
| 1163 | if (which != IRQCHIP_STATE_PENDING) |
| 1164 | return -EINVAL; |
| 1165 | |
| 1166 | if (state) |
| 1167 | its_send_int(its_dev, event); |
| 1168 | else |
| 1169 | its_send_clear(its_dev, event); |
| 1170 | |
| 1171 | return 0; |
| 1172 | } |
| 1173 | |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 1174 | static void its_map_vm(struct its_node *its, struct its_vm *vm) |
| 1175 | { |
| 1176 | unsigned long flags; |
| 1177 | |
| 1178 | /* Not using the ITS list? Everything is always mapped. */ |
| 1179 | if (!its_list_map) |
| 1180 | return; |
| 1181 | |
| 1182 | raw_spin_lock_irqsave(&vmovp_lock, flags); |
| 1183 | |
| 1184 | /* |
| 1185 | * If the VM wasn't mapped yet, iterate over the vpes and get |
| 1186 | * them mapped now. |
| 1187 | */ |
| 1188 | vm->vlpi_count[its->list_nr]++; |
| 1189 | |
| 1190 | if (vm->vlpi_count[its->list_nr] == 1) { |
| 1191 | int i; |
| 1192 | |
| 1193 | for (i = 0; i < vm->nr_vpes; i++) { |
| 1194 | struct its_vpe *vpe = vm->vpes[i]; |
Marc Zyngier | 44c4c25 | 2017-10-19 10:11:34 +0100 | [diff] [blame] | 1195 | struct irq_data *d = irq_get_irq_data(vpe->irq); |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 1196 | |
| 1197 | /* Map the VPE to the first possible CPU */ |
| 1198 | vpe->col_idx = cpumask_first(cpu_online_mask); |
| 1199 | its_send_vmapp(its, vpe, true); |
| 1200 | its_send_vinvall(its, vpe); |
Marc Zyngier | 44c4c25 | 2017-10-19 10:11:34 +0100 | [diff] [blame] | 1201 | irq_data_update_effective_affinity(d, cpumask_of(vpe->col_idx)); |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 1202 | } |
| 1203 | } |
| 1204 | |
| 1205 | raw_spin_unlock_irqrestore(&vmovp_lock, flags); |
| 1206 | } |
| 1207 | |
| 1208 | static void its_unmap_vm(struct its_node *its, struct its_vm *vm) |
| 1209 | { |
| 1210 | unsigned long flags; |
| 1211 | |
| 1212 | /* Not using the ITS list? Everything is always mapped. */ |
| 1213 | if (!its_list_map) |
| 1214 | return; |
| 1215 | |
| 1216 | raw_spin_lock_irqsave(&vmovp_lock, flags); |
| 1217 | |
| 1218 | if (!--vm->vlpi_count[its->list_nr]) { |
| 1219 | int i; |
| 1220 | |
| 1221 | for (i = 0; i < vm->nr_vpes; i++) |
| 1222 | its_send_vmapp(its, vm->vpes[i], false); |
| 1223 | } |
| 1224 | |
| 1225 | raw_spin_unlock_irqrestore(&vmovp_lock, flags); |
| 1226 | } |
| 1227 | |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 1228 | static int its_vlpi_map(struct irq_data *d, struct its_cmd_info *info) |
| 1229 | { |
| 1230 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1231 | u32 event = its_get_event_id(d); |
| 1232 | int ret = 0; |
| 1233 | |
| 1234 | if (!info->map) |
| 1235 | return -EINVAL; |
| 1236 | |
| 1237 | mutex_lock(&its_dev->event_map.vlpi_lock); |
| 1238 | |
| 1239 | if (!its_dev->event_map.vm) { |
| 1240 | struct its_vlpi_map *maps; |
| 1241 | |
| 1242 | maps = kzalloc(sizeof(*maps) * its_dev->event_map.nr_lpis, |
| 1243 | GFP_KERNEL); |
| 1244 | if (!maps) { |
| 1245 | ret = -ENOMEM; |
| 1246 | goto out; |
| 1247 | } |
| 1248 | |
| 1249 | its_dev->event_map.vm = info->map->vm; |
| 1250 | its_dev->event_map.vlpi_maps = maps; |
| 1251 | } else if (its_dev->event_map.vm != info->map->vm) { |
| 1252 | ret = -EINVAL; |
| 1253 | goto out; |
| 1254 | } |
| 1255 | |
| 1256 | /* Get our private copy of the mapping information */ |
| 1257 | its_dev->event_map.vlpi_maps[event] = *info->map; |
| 1258 | |
| 1259 | if (irqd_is_forwarded_to_vcpu(d)) { |
| 1260 | /* Already mapped, move it around */ |
| 1261 | its_send_vmovi(its_dev, event); |
| 1262 | } else { |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 1263 | /* Ensure all the VPEs are mapped on this ITS */ |
| 1264 | its_map_vm(its_dev->its, info->map->vm); |
| 1265 | |
Marc Zyngier | d4d7b4a | 2017-10-26 10:44:07 +0100 | [diff] [blame] | 1266 | /* |
| 1267 | * Flag the interrupt as forwarded so that we can |
| 1268 | * start poking the virtual property table. |
| 1269 | */ |
| 1270 | irqd_set_forwarded_to_vcpu(d); |
| 1271 | |
| 1272 | /* Write out the property to the prop table */ |
| 1273 | lpi_write_config(d, 0xff, info->map->properties); |
| 1274 | |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 1275 | /* Drop the physical mapping */ |
| 1276 | its_send_discard(its_dev, event); |
| 1277 | |
| 1278 | /* and install the virtual one */ |
| 1279 | its_send_vmapti(its_dev, event); |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 1280 | |
| 1281 | /* Increment the number of VLPIs */ |
| 1282 | its_dev->event_map.nr_vlpis++; |
| 1283 | } |
| 1284 | |
| 1285 | out: |
| 1286 | mutex_unlock(&its_dev->event_map.vlpi_lock); |
| 1287 | return ret; |
| 1288 | } |
| 1289 | |
| 1290 | static int its_vlpi_get(struct irq_data *d, struct its_cmd_info *info) |
| 1291 | { |
| 1292 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1293 | u32 event = its_get_event_id(d); |
| 1294 | int ret = 0; |
| 1295 | |
| 1296 | mutex_lock(&its_dev->event_map.vlpi_lock); |
| 1297 | |
| 1298 | if (!its_dev->event_map.vm || |
| 1299 | !its_dev->event_map.vlpi_maps[event].vm) { |
| 1300 | ret = -EINVAL; |
| 1301 | goto out; |
| 1302 | } |
| 1303 | |
| 1304 | /* Copy our mapping information to the incoming request */ |
| 1305 | *info->map = its_dev->event_map.vlpi_maps[event]; |
| 1306 | |
| 1307 | out: |
| 1308 | mutex_unlock(&its_dev->event_map.vlpi_lock); |
| 1309 | return ret; |
| 1310 | } |
| 1311 | |
| 1312 | static int its_vlpi_unmap(struct irq_data *d) |
| 1313 | { |
| 1314 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1315 | u32 event = its_get_event_id(d); |
| 1316 | int ret = 0; |
| 1317 | |
| 1318 | mutex_lock(&its_dev->event_map.vlpi_lock); |
| 1319 | |
| 1320 | if (!its_dev->event_map.vm || !irqd_is_forwarded_to_vcpu(d)) { |
| 1321 | ret = -EINVAL; |
| 1322 | goto out; |
| 1323 | } |
| 1324 | |
| 1325 | /* Drop the virtual mapping */ |
| 1326 | its_send_discard(its_dev, event); |
| 1327 | |
| 1328 | /* and restore the physical one */ |
| 1329 | irqd_clr_forwarded_to_vcpu(d); |
| 1330 | its_send_mapti(its_dev, d->hwirq, event); |
| 1331 | lpi_update_config(d, 0xff, (LPI_PROP_DEFAULT_PRIO | |
| 1332 | LPI_PROP_ENABLED | |
| 1333 | LPI_PROP_GROUP1)); |
| 1334 | |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 1335 | /* Potentially unmap the VM from this ITS */ |
| 1336 | its_unmap_vm(its_dev->its, its_dev->event_map.vm); |
| 1337 | |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 1338 | /* |
| 1339 | * Drop the refcount and make the device available again if |
| 1340 | * this was the last VLPI. |
| 1341 | */ |
| 1342 | if (!--its_dev->event_map.nr_vlpis) { |
| 1343 | its_dev->event_map.vm = NULL; |
| 1344 | kfree(its_dev->event_map.vlpi_maps); |
| 1345 | } |
| 1346 | |
| 1347 | out: |
| 1348 | mutex_unlock(&its_dev->event_map.vlpi_lock); |
| 1349 | return ret; |
| 1350 | } |
| 1351 | |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1352 | static int its_vlpi_prop_update(struct irq_data *d, struct its_cmd_info *info) |
| 1353 | { |
| 1354 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1355 | |
| 1356 | if (!its_dev->event_map.vm || !irqd_is_forwarded_to_vcpu(d)) |
| 1357 | return -EINVAL; |
| 1358 | |
| 1359 | if (info->cmd_type == PROP_UPDATE_AND_INV_VLPI) |
| 1360 | lpi_update_config(d, 0xff, info->config); |
| 1361 | else |
| 1362 | lpi_write_config(d, 0xff, info->config); |
| 1363 | its_vlpi_set_doorbell(d, !!(info->config & LPI_PROP_ENABLED)); |
| 1364 | |
| 1365 | return 0; |
| 1366 | } |
| 1367 | |
Marc Zyngier | c808eea | 2016-12-20 09:31:20 +0000 | [diff] [blame] | 1368 | static int its_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu_info) |
| 1369 | { |
| 1370 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 1371 | struct its_cmd_info *info = vcpu_info; |
| 1372 | |
| 1373 | /* Need a v4 ITS */ |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 1374 | if (!its_dev->its->is_v4) |
Marc Zyngier | c808eea | 2016-12-20 09:31:20 +0000 | [diff] [blame] | 1375 | return -EINVAL; |
| 1376 | |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 1377 | /* Unmap request? */ |
| 1378 | if (!info) |
| 1379 | return its_vlpi_unmap(d); |
| 1380 | |
Marc Zyngier | c808eea | 2016-12-20 09:31:20 +0000 | [diff] [blame] | 1381 | switch (info->cmd_type) { |
| 1382 | case MAP_VLPI: |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 1383 | return its_vlpi_map(d, info); |
Marc Zyngier | c808eea | 2016-12-20 09:31:20 +0000 | [diff] [blame] | 1384 | |
| 1385 | case GET_VLPI: |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 1386 | return its_vlpi_get(d, info); |
Marc Zyngier | c808eea | 2016-12-20 09:31:20 +0000 | [diff] [blame] | 1387 | |
| 1388 | case PROP_UPDATE_VLPI: |
| 1389 | case PROP_UPDATE_AND_INV_VLPI: |
Marc Zyngier | 015ec03 | 2016-12-20 09:54:57 +0000 | [diff] [blame] | 1390 | return its_vlpi_prop_update(d, info); |
Marc Zyngier | c808eea | 2016-12-20 09:31:20 +0000 | [diff] [blame] | 1391 | |
| 1392 | default: |
| 1393 | return -EINVAL; |
| 1394 | } |
| 1395 | } |
| 1396 | |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1397 | static struct irq_chip its_irq_chip = { |
| 1398 | .name = "ITS", |
| 1399 | .irq_mask = its_mask_irq, |
| 1400 | .irq_unmask = its_unmask_irq, |
Ashok Kumar | 004fa08 | 2016-02-11 05:38:53 -0800 | [diff] [blame] | 1401 | .irq_eoi = irq_chip_eoi_parent, |
Marc Zyngier | c48ed51 | 2014-11-24 14:35:12 +0000 | [diff] [blame] | 1402 | .irq_set_affinity = its_set_affinity, |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 1403 | .irq_compose_msi_msg = its_irq_compose_msi_msg, |
Marc Zyngier | 8d85dce | 2016-12-19 18:02:13 +0000 | [diff] [blame] | 1404 | .irq_set_irqchip_state = its_irq_set_irqchip_state, |
Marc Zyngier | c808eea | 2016-12-20 09:31:20 +0000 | [diff] [blame] | 1405 | .irq_set_vcpu_affinity = its_irq_set_vcpu_affinity, |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 1406 | }; |
| 1407 | |
Marc Zyngier | bf9529f | 2014-11-24 14:35:13 +0000 | [diff] [blame] | 1408 | /* |
| 1409 | * How we allocate LPIs: |
| 1410 | * |
| 1411 | * The GIC has id_bits bits for interrupt identifiers. From there, we |
| 1412 | * must subtract 8192 which are reserved for SGIs/PPIs/SPIs. Then, as |
| 1413 | * we allocate LPIs by chunks of 32, we can shift the whole thing by 5 |
| 1414 | * bits to the right. |
| 1415 | * |
| 1416 | * This gives us (((1UL << id_bits) - 8192) >> 5) possible allocations. |
| 1417 | */ |
| 1418 | #define IRQS_PER_CHUNK_SHIFT 5 |
| 1419 | #define IRQS_PER_CHUNK (1 << IRQS_PER_CHUNK_SHIFT) |
Shanker Donthineni | 6c31e12 | 2017-06-22 18:19:14 -0500 | [diff] [blame] | 1420 | #define ITS_MAX_LPI_NRBITS 16 /* 64K LPIs */ |
Marc Zyngier | bf9529f | 2014-11-24 14:35:13 +0000 | [diff] [blame] | 1421 | |
| 1422 | static unsigned long *lpi_bitmap; |
| 1423 | static u32 lpi_chunks; |
| 1424 | static DEFINE_SPINLOCK(lpi_lock); |
| 1425 | |
| 1426 | static int its_lpi_to_chunk(int lpi) |
| 1427 | { |
| 1428 | return (lpi - 8192) >> IRQS_PER_CHUNK_SHIFT; |
| 1429 | } |
| 1430 | |
| 1431 | static int its_chunk_to_lpi(int chunk) |
| 1432 | { |
| 1433 | return (chunk << IRQS_PER_CHUNK_SHIFT) + 8192; |
| 1434 | } |
| 1435 | |
Tomasz Nowicki | 04a0e4d | 2016-01-19 14:11:18 +0100 | [diff] [blame] | 1436 | static int __init its_lpi_init(u32 id_bits) |
Marc Zyngier | bf9529f | 2014-11-24 14:35:13 +0000 | [diff] [blame] | 1437 | { |
| 1438 | lpi_chunks = its_lpi_to_chunk(1UL << id_bits); |
| 1439 | |
| 1440 | lpi_bitmap = kzalloc(BITS_TO_LONGS(lpi_chunks) * sizeof(long), |
| 1441 | GFP_KERNEL); |
| 1442 | if (!lpi_bitmap) { |
| 1443 | lpi_chunks = 0; |
| 1444 | return -ENOMEM; |
| 1445 | } |
| 1446 | |
| 1447 | pr_info("ITS: Allocated %d chunks for LPIs\n", (int)lpi_chunks); |
| 1448 | return 0; |
| 1449 | } |
| 1450 | |
| 1451 | static unsigned long *its_lpi_alloc_chunks(int nr_irqs, int *base, int *nr_ids) |
| 1452 | { |
| 1453 | unsigned long *bitmap = NULL; |
| 1454 | int chunk_id; |
| 1455 | int nr_chunks; |
| 1456 | int i; |
| 1457 | |
| 1458 | nr_chunks = DIV_ROUND_UP(nr_irqs, IRQS_PER_CHUNK); |
| 1459 | |
| 1460 | spin_lock(&lpi_lock); |
| 1461 | |
| 1462 | do { |
| 1463 | chunk_id = bitmap_find_next_zero_area(lpi_bitmap, lpi_chunks, |
| 1464 | 0, nr_chunks, 0); |
| 1465 | if (chunk_id < lpi_chunks) |
| 1466 | break; |
| 1467 | |
| 1468 | nr_chunks--; |
| 1469 | } while (nr_chunks > 0); |
| 1470 | |
| 1471 | if (!nr_chunks) |
| 1472 | goto out; |
| 1473 | |
| 1474 | bitmap = kzalloc(BITS_TO_LONGS(nr_chunks * IRQS_PER_CHUNK) * sizeof (long), |
| 1475 | GFP_ATOMIC); |
| 1476 | if (!bitmap) |
| 1477 | goto out; |
| 1478 | |
| 1479 | for (i = 0; i < nr_chunks; i++) |
| 1480 | set_bit(chunk_id + i, lpi_bitmap); |
| 1481 | |
| 1482 | *base = its_chunk_to_lpi(chunk_id); |
| 1483 | *nr_ids = nr_chunks * IRQS_PER_CHUNK; |
| 1484 | |
| 1485 | out: |
| 1486 | spin_unlock(&lpi_lock); |
| 1487 | |
Marc Zyngier | c8415b9 | 2015-10-02 16:44:05 +0100 | [diff] [blame] | 1488 | if (!bitmap) |
| 1489 | *base = *nr_ids = 0; |
| 1490 | |
Marc Zyngier | bf9529f | 2014-11-24 14:35:13 +0000 | [diff] [blame] | 1491 | return bitmap; |
| 1492 | } |
| 1493 | |
Marc Zyngier | cf2be8b | 2016-12-19 18:49:59 +0000 | [diff] [blame] | 1494 | static void its_lpi_free_chunks(unsigned long *bitmap, int base, int nr_ids) |
Marc Zyngier | bf9529f | 2014-11-24 14:35:13 +0000 | [diff] [blame] | 1495 | { |
| 1496 | int lpi; |
| 1497 | |
| 1498 | spin_lock(&lpi_lock); |
| 1499 | |
| 1500 | for (lpi = base; lpi < (base + nr_ids); lpi += IRQS_PER_CHUNK) { |
| 1501 | int chunk = its_lpi_to_chunk(lpi); |
Marc Zyngier | cf2be8b | 2016-12-19 18:49:59 +0000 | [diff] [blame] | 1502 | |
Marc Zyngier | bf9529f | 2014-11-24 14:35:13 +0000 | [diff] [blame] | 1503 | BUG_ON(chunk > lpi_chunks); |
| 1504 | if (test_bit(chunk, lpi_bitmap)) { |
| 1505 | clear_bit(chunk, lpi_bitmap); |
| 1506 | } else { |
| 1507 | pr_err("Bad LPI chunk %d\n", chunk); |
| 1508 | } |
| 1509 | } |
| 1510 | |
| 1511 | spin_unlock(&lpi_lock); |
| 1512 | |
Marc Zyngier | cf2be8b | 2016-12-19 18:49:59 +0000 | [diff] [blame] | 1513 | kfree(bitmap); |
Marc Zyngier | bf9529f | 2014-11-24 14:35:13 +0000 | [diff] [blame] | 1514 | } |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1515 | |
Marc Zyngier | 0e5ccf9 | 2016-12-19 18:15:05 +0000 | [diff] [blame] | 1516 | static struct page *its_allocate_prop_table(gfp_t gfp_flags) |
| 1517 | { |
| 1518 | struct page *prop_page; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1519 | |
Marc Zyngier | 0e5ccf9 | 2016-12-19 18:15:05 +0000 | [diff] [blame] | 1520 | prop_page = alloc_pages(gfp_flags, get_order(LPI_PROPBASE_SZ)); |
| 1521 | if (!prop_page) |
| 1522 | return NULL; |
| 1523 | |
| 1524 | /* Priority 0xa0, Group-1, disabled */ |
| 1525 | memset(page_address(prop_page), |
| 1526 | LPI_PROP_DEFAULT_PRIO | LPI_PROP_GROUP1, |
| 1527 | LPI_PROPBASE_SZ); |
| 1528 | |
| 1529 | /* Make sure the GIC will observe the written configuration */ |
| 1530 | gic_flush_dcache_to_poc(page_address(prop_page), LPI_PROPBASE_SZ); |
| 1531 | |
| 1532 | return prop_page; |
| 1533 | } |
| 1534 | |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 1535 | static void its_free_prop_table(struct page *prop_page) |
| 1536 | { |
| 1537 | free_pages((unsigned long)page_address(prop_page), |
| 1538 | get_order(LPI_PROPBASE_SZ)); |
| 1539 | } |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1540 | |
| 1541 | static int __init its_alloc_lpi_tables(void) |
| 1542 | { |
| 1543 | phys_addr_t paddr; |
| 1544 | |
Shanker Donthineni | 6c31e12 | 2017-06-22 18:19:14 -0500 | [diff] [blame] | 1545 | lpi_id_bits = min_t(u32, gic_rdists->id_bits, ITS_MAX_LPI_NRBITS); |
Marc Zyngier | 0e5ccf9 | 2016-12-19 18:15:05 +0000 | [diff] [blame] | 1546 | gic_rdists->prop_page = its_allocate_prop_table(GFP_NOWAIT); |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1547 | if (!gic_rdists->prop_page) { |
| 1548 | pr_err("Failed to allocate PROPBASE\n"); |
| 1549 | return -ENOMEM; |
| 1550 | } |
| 1551 | |
| 1552 | paddr = page_to_phys(gic_rdists->prop_page); |
| 1553 | pr_info("GIC: using LPI property table @%pa\n", &paddr); |
| 1554 | |
Shanker Donthineni | 6c31e12 | 2017-06-22 18:19:14 -0500 | [diff] [blame] | 1555 | return its_lpi_init(lpi_id_bits); |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1556 | } |
| 1557 | |
| 1558 | static const char *its_base_type_string[] = { |
| 1559 | [GITS_BASER_TYPE_DEVICE] = "Devices", |
| 1560 | [GITS_BASER_TYPE_VCPU] = "Virtual CPUs", |
Marc Zyngier | 4f46de9 | 2016-12-20 15:50:14 +0000 | [diff] [blame] | 1561 | [GITS_BASER_TYPE_RESERVED3] = "Reserved (3)", |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1562 | [GITS_BASER_TYPE_COLLECTION] = "Interrupt Collections", |
| 1563 | [GITS_BASER_TYPE_RESERVED5] = "Reserved (5)", |
| 1564 | [GITS_BASER_TYPE_RESERVED6] = "Reserved (6)", |
| 1565 | [GITS_BASER_TYPE_RESERVED7] = "Reserved (7)", |
| 1566 | }; |
| 1567 | |
Shanker Donthineni | 2d81d42 | 2016-06-06 18:17:28 -0500 | [diff] [blame] | 1568 | static u64 its_read_baser(struct its_node *its, struct its_baser *baser) |
| 1569 | { |
| 1570 | u32 idx = baser - its->tables; |
| 1571 | |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 1572 | return gits_read_baser(its->base + GITS_BASER + (idx << 3)); |
Shanker Donthineni | 2d81d42 | 2016-06-06 18:17:28 -0500 | [diff] [blame] | 1573 | } |
| 1574 | |
| 1575 | static void its_write_baser(struct its_node *its, struct its_baser *baser, |
| 1576 | u64 val) |
| 1577 | { |
| 1578 | u32 idx = baser - its->tables; |
| 1579 | |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 1580 | gits_write_baser(val, its->base + GITS_BASER + (idx << 3)); |
Shanker Donthineni | 2d81d42 | 2016-06-06 18:17:28 -0500 | [diff] [blame] | 1581 | baser->val = its_read_baser(its, baser); |
| 1582 | } |
| 1583 | |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1584 | static int its_setup_baser(struct its_node *its, struct its_baser *baser, |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1585 | u64 cache, u64 shr, u32 psz, u32 order, |
| 1586 | bool indirect) |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1587 | { |
| 1588 | u64 val = its_read_baser(its, baser); |
| 1589 | u64 esz = GITS_BASER_ENTRY_SIZE(val); |
| 1590 | u64 type = GITS_BASER_TYPE(val); |
Shanker Donthineni | 30ae961 | 2017-10-09 11:46:55 -0500 | [diff] [blame] | 1591 | u64 baser_phys, tmp; |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1592 | u32 alloc_pages; |
| 1593 | void *base; |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1594 | |
| 1595 | retry_alloc_baser: |
| 1596 | alloc_pages = (PAGE_ORDER_TO_SIZE(order) / psz); |
| 1597 | if (alloc_pages > GITS_BASER_PAGES_MAX) { |
| 1598 | pr_warn("ITS@%pa: %s too large, reduce ITS pages %u->%u\n", |
| 1599 | &its->phys_base, its_base_type_string[type], |
| 1600 | alloc_pages, GITS_BASER_PAGES_MAX); |
| 1601 | alloc_pages = GITS_BASER_PAGES_MAX; |
| 1602 | order = get_order(GITS_BASER_PAGES_MAX * psz); |
| 1603 | } |
| 1604 | |
| 1605 | base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order); |
| 1606 | if (!base) |
| 1607 | return -ENOMEM; |
| 1608 | |
Shanker Donthineni | 30ae961 | 2017-10-09 11:46:55 -0500 | [diff] [blame] | 1609 | baser_phys = virt_to_phys(base); |
| 1610 | |
| 1611 | /* Check if the physical address of the memory is above 48bits */ |
| 1612 | if (IS_ENABLED(CONFIG_ARM64_64K_PAGES) && (baser_phys >> 48)) { |
| 1613 | |
| 1614 | /* 52bit PA is supported only when PageSize=64K */ |
| 1615 | if (psz != SZ_64K) { |
| 1616 | pr_err("ITS: no 52bit PA support when psz=%d\n", psz); |
| 1617 | free_pages((unsigned long)base, order); |
| 1618 | return -ENXIO; |
| 1619 | } |
| 1620 | |
| 1621 | /* Convert 52bit PA to 48bit field */ |
| 1622 | baser_phys = GITS_BASER_PHYS_52_to_48(baser_phys); |
| 1623 | } |
| 1624 | |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1625 | retry_baser: |
Shanker Donthineni | 30ae961 | 2017-10-09 11:46:55 -0500 | [diff] [blame] | 1626 | val = (baser_phys | |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1627 | (type << GITS_BASER_TYPE_SHIFT) | |
| 1628 | ((esz - 1) << GITS_BASER_ENTRY_SIZE_SHIFT) | |
| 1629 | ((alloc_pages - 1) << GITS_BASER_PAGES_SHIFT) | |
| 1630 | cache | |
| 1631 | shr | |
| 1632 | GITS_BASER_VALID); |
| 1633 | |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1634 | val |= indirect ? GITS_BASER_INDIRECT : 0x0; |
| 1635 | |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1636 | switch (psz) { |
| 1637 | case SZ_4K: |
| 1638 | val |= GITS_BASER_PAGE_SIZE_4K; |
| 1639 | break; |
| 1640 | case SZ_16K: |
| 1641 | val |= GITS_BASER_PAGE_SIZE_16K; |
| 1642 | break; |
| 1643 | case SZ_64K: |
| 1644 | val |= GITS_BASER_PAGE_SIZE_64K; |
| 1645 | break; |
| 1646 | } |
| 1647 | |
| 1648 | its_write_baser(its, baser, val); |
| 1649 | tmp = baser->val; |
| 1650 | |
| 1651 | if ((val ^ tmp) & GITS_BASER_SHAREABILITY_MASK) { |
| 1652 | /* |
| 1653 | * Shareability didn't stick. Just use |
| 1654 | * whatever the read reported, which is likely |
| 1655 | * to be the only thing this redistributor |
| 1656 | * supports. If that's zero, make it |
| 1657 | * non-cacheable as well. |
| 1658 | */ |
| 1659 | shr = tmp & GITS_BASER_SHAREABILITY_MASK; |
| 1660 | if (!shr) { |
| 1661 | cache = GITS_BASER_nC; |
Vladimir Murzin | 328191c | 2016-11-02 11:54:05 +0000 | [diff] [blame] | 1662 | gic_flush_dcache_to_poc(base, PAGE_ORDER_TO_SIZE(order)); |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1663 | } |
| 1664 | goto retry_baser; |
| 1665 | } |
| 1666 | |
| 1667 | if ((val ^ tmp) & GITS_BASER_PAGE_SIZE_MASK) { |
| 1668 | /* |
| 1669 | * Page size didn't stick. Let's try a smaller |
| 1670 | * size and retry. If we reach 4K, then |
| 1671 | * something is horribly wrong... |
| 1672 | */ |
| 1673 | free_pages((unsigned long)base, order); |
| 1674 | baser->base = NULL; |
| 1675 | |
| 1676 | switch (psz) { |
| 1677 | case SZ_16K: |
| 1678 | psz = SZ_4K; |
| 1679 | goto retry_alloc_baser; |
| 1680 | case SZ_64K: |
| 1681 | psz = SZ_16K; |
| 1682 | goto retry_alloc_baser; |
| 1683 | } |
| 1684 | } |
| 1685 | |
| 1686 | if (val != tmp) { |
Vladimir Murzin | b11283e | 2016-11-02 11:54:03 +0000 | [diff] [blame] | 1687 | pr_err("ITS@%pa: %s doesn't stick: %llx %llx\n", |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1688 | &its->phys_base, its_base_type_string[type], |
Vladimir Murzin | b11283e | 2016-11-02 11:54:03 +0000 | [diff] [blame] | 1689 | val, tmp); |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1690 | free_pages((unsigned long)base, order); |
| 1691 | return -ENXIO; |
| 1692 | } |
| 1693 | |
| 1694 | baser->order = order; |
| 1695 | baser->base = base; |
| 1696 | baser->psz = psz; |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1697 | tmp = indirect ? GITS_LVL1_ENTRY_SIZE : esz; |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1698 | |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1699 | pr_info("ITS@%pa: allocated %d %s @%lx (%s, esz %d, psz %dK, shr %d)\n", |
Vladimir Murzin | d524eaa | 2016-11-02 11:54:04 +0000 | [diff] [blame] | 1700 | &its->phys_base, (int)(PAGE_ORDER_TO_SIZE(order) / (int)tmp), |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1701 | its_base_type_string[type], |
| 1702 | (unsigned long)virt_to_phys(base), |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1703 | indirect ? "indirect" : "flat", (int)esz, |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1704 | psz / SZ_1K, (int)shr >> GITS_BASER_SHAREABILITY_SHIFT); |
| 1705 | |
| 1706 | return 0; |
| 1707 | } |
| 1708 | |
Marc Zyngier | 4cacac5 | 2016-12-19 18:18:34 +0000 | [diff] [blame] | 1709 | static bool its_parse_indirect_baser(struct its_node *its, |
| 1710 | struct its_baser *baser, |
Shanker Donthineni | 32bd44d | 2017-10-07 15:43:48 -0500 | [diff] [blame] | 1711 | u32 psz, u32 *order, u32 ids) |
Shanker Donthineni | 4b75c45 | 2016-06-06 18:17:29 -0500 | [diff] [blame] | 1712 | { |
Marc Zyngier | 4cacac5 | 2016-12-19 18:18:34 +0000 | [diff] [blame] | 1713 | u64 tmp = its_read_baser(its, baser); |
| 1714 | u64 type = GITS_BASER_TYPE(tmp); |
| 1715 | u64 esz = GITS_BASER_ENTRY_SIZE(tmp); |
Shanker Donthineni | 2fd632a | 2017-01-25 21:51:41 -0600 | [diff] [blame] | 1716 | u64 val = GITS_BASER_InnerShareable | GITS_BASER_RaWaWb; |
Shanker Donthineni | 4b75c45 | 2016-06-06 18:17:29 -0500 | [diff] [blame] | 1717 | u32 new_order = *order; |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1718 | bool indirect = false; |
| 1719 | |
| 1720 | /* No need to enable Indirection if memory requirement < (psz*2)bytes */ |
| 1721 | if ((esz << ids) > (psz * 2)) { |
| 1722 | /* |
| 1723 | * Find out whether hw supports a single or two-level table by |
| 1724 | * table by reading bit at offset '62' after writing '1' to it. |
| 1725 | */ |
| 1726 | its_write_baser(its, baser, val | GITS_BASER_INDIRECT); |
| 1727 | indirect = !!(baser->val & GITS_BASER_INDIRECT); |
| 1728 | |
| 1729 | if (indirect) { |
| 1730 | /* |
| 1731 | * The size of the lvl2 table is equal to ITS page size |
| 1732 | * which is 'psz'. For computing lvl1 table size, |
| 1733 | * subtract ID bits that sparse lvl2 table from 'ids' |
| 1734 | * which is reported by ITS hardware times lvl1 table |
| 1735 | * entry size. |
| 1736 | */ |
Vladimir Murzin | d524eaa | 2016-11-02 11:54:04 +0000 | [diff] [blame] | 1737 | ids -= ilog2(psz / (int)esz); |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1738 | esz = GITS_LVL1_ENTRY_SIZE; |
| 1739 | } |
| 1740 | } |
Shanker Donthineni | 4b75c45 | 2016-06-06 18:17:29 -0500 | [diff] [blame] | 1741 | |
| 1742 | /* |
| 1743 | * Allocate as many entries as required to fit the |
| 1744 | * range of device IDs that the ITS can grok... The ID |
| 1745 | * space being incredibly sparse, this results in a |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1746 | * massive waste of memory if two-level device table |
| 1747 | * feature is not supported by hardware. |
Shanker Donthineni | 4b75c45 | 2016-06-06 18:17:29 -0500 | [diff] [blame] | 1748 | */ |
| 1749 | new_order = max_t(u32, get_order(esz << ids), new_order); |
| 1750 | if (new_order >= MAX_ORDER) { |
| 1751 | new_order = MAX_ORDER - 1; |
Vladimir Murzin | d524eaa | 2016-11-02 11:54:04 +0000 | [diff] [blame] | 1752 | ids = ilog2(PAGE_ORDER_TO_SIZE(new_order) / (int)esz); |
Marc Zyngier | 4cacac5 | 2016-12-19 18:18:34 +0000 | [diff] [blame] | 1753 | pr_warn("ITS@%pa: %s Table too large, reduce ids %u->%u\n", |
| 1754 | &its->phys_base, its_base_type_string[type], |
| 1755 | its->device_ids, ids); |
Shanker Donthineni | 4b75c45 | 2016-06-06 18:17:29 -0500 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | *order = new_order; |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1759 | |
| 1760 | return indirect; |
Shanker Donthineni | 4b75c45 | 2016-06-06 18:17:29 -0500 | [diff] [blame] | 1761 | } |
| 1762 | |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1763 | static void its_free_tables(struct its_node *its) |
| 1764 | { |
| 1765 | int i; |
| 1766 | |
| 1767 | for (i = 0; i < GITS_BASER_NR_REGS; i++) { |
Shanker Donthineni | 1a485f4 | 2016-02-01 20:19:44 -0600 | [diff] [blame] | 1768 | if (its->tables[i].base) { |
| 1769 | free_pages((unsigned long)its->tables[i].base, |
| 1770 | its->tables[i].order); |
| 1771 | its->tables[i].base = NULL; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1772 | } |
| 1773 | } |
| 1774 | } |
| 1775 | |
Shanker Donthineni | 0e0b0f6 | 2016-06-06 18:17:31 -0500 | [diff] [blame] | 1776 | static int its_alloc_tables(struct its_node *its) |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1777 | { |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1778 | u64 shr = GITS_BASER_InnerShareable; |
Shanker Donthineni | 2fd632a | 2017-01-25 21:51:41 -0600 | [diff] [blame] | 1779 | u64 cache = GITS_BASER_RaWaWb; |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1780 | u32 psz = SZ_64K; |
| 1781 | int err, i; |
Robert Richter | 9410097 | 2015-09-21 22:58:38 +0200 | [diff] [blame] | 1782 | |
Ard Biesheuvel | fa15001 | 2017-10-17 17:55:54 +0100 | [diff] [blame] | 1783 | if (its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_22375) |
| 1784 | /* erratum 24313: ignore memory access type */ |
| 1785 | cache = GITS_BASER_nCnB; |
Shanker Donthineni | 466b7d1 | 2016-03-09 22:10:49 -0600 | [diff] [blame] | 1786 | |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1787 | for (i = 0; i < GITS_BASER_NR_REGS; i++) { |
Shanker Donthineni | 2d81d42 | 2016-06-06 18:17:28 -0500 | [diff] [blame] | 1788 | struct its_baser *baser = its->tables + i; |
| 1789 | u64 val = its_read_baser(its, baser); |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1790 | u64 type = GITS_BASER_TYPE(val); |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1791 | u32 order = get_order(psz); |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1792 | bool indirect = false; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1793 | |
Marc Zyngier | 4cacac5 | 2016-12-19 18:18:34 +0000 | [diff] [blame] | 1794 | switch (type) { |
| 1795 | case GITS_BASER_TYPE_NONE: |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1796 | continue; |
| 1797 | |
Marc Zyngier | 4cacac5 | 2016-12-19 18:18:34 +0000 | [diff] [blame] | 1798 | case GITS_BASER_TYPE_DEVICE: |
Shanker Donthineni | 32bd44d | 2017-10-07 15:43:48 -0500 | [diff] [blame] | 1799 | indirect = its_parse_indirect_baser(its, baser, |
| 1800 | psz, &order, |
| 1801 | its->device_ids); |
Marc Zyngier | 4cacac5 | 2016-12-19 18:18:34 +0000 | [diff] [blame] | 1802 | case GITS_BASER_TYPE_VCPU: |
| 1803 | indirect = its_parse_indirect_baser(its, baser, |
Shanker Donthineni | 32bd44d | 2017-10-07 15:43:48 -0500 | [diff] [blame] | 1804 | psz, &order, |
| 1805 | ITS_MAX_VPEID_BITS); |
Marc Zyngier | 4cacac5 | 2016-12-19 18:18:34 +0000 | [diff] [blame] | 1806 | break; |
| 1807 | } |
Marc Zyngier | f54b97e | 2015-03-06 16:37:41 +0000 | [diff] [blame] | 1808 | |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 1809 | err = its_setup_baser(its, baser, cache, shr, psz, order, indirect); |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1810 | if (err < 0) { |
| 1811 | its_free_tables(its); |
| 1812 | return err; |
Robert Richter | 30f2136 | 2015-09-21 22:58:34 +0200 | [diff] [blame] | 1813 | } |
| 1814 | |
Shanker Donthineni | 9347359 | 2016-06-06 18:17:30 -0500 | [diff] [blame] | 1815 | /* Update settings which will be used for next BASERn */ |
| 1816 | psz = baser->psz; |
| 1817 | cache = baser->val & GITS_BASER_CACHEABILITY_MASK; |
| 1818 | shr = baser->val & GITS_BASER_SHAREABILITY_MASK; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | return 0; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1822 | } |
| 1823 | |
| 1824 | static int its_alloc_collections(struct its_node *its) |
| 1825 | { |
| 1826 | its->collections = kzalloc(nr_cpu_ids * sizeof(*its->collections), |
| 1827 | GFP_KERNEL); |
| 1828 | if (!its->collections) |
| 1829 | return -ENOMEM; |
| 1830 | |
| 1831 | return 0; |
| 1832 | } |
| 1833 | |
Marc Zyngier | 7c297a2 | 2016-12-19 18:34:38 +0000 | [diff] [blame] | 1834 | static struct page *its_allocate_pending_table(gfp_t gfp_flags) |
| 1835 | { |
| 1836 | struct page *pend_page; |
| 1837 | /* |
| 1838 | * The pending pages have to be at least 64kB aligned, |
| 1839 | * hence the 'max(LPI_PENDBASE_SZ, SZ_64K)' below. |
| 1840 | */ |
| 1841 | pend_page = alloc_pages(gfp_flags | __GFP_ZERO, |
| 1842 | get_order(max_t(u32, LPI_PENDBASE_SZ, SZ_64K))); |
| 1843 | if (!pend_page) |
| 1844 | return NULL; |
| 1845 | |
| 1846 | /* Make sure the GIC will observe the zero-ed page */ |
| 1847 | gic_flush_dcache_to_poc(page_address(pend_page), LPI_PENDBASE_SZ); |
| 1848 | |
| 1849 | return pend_page; |
| 1850 | } |
| 1851 | |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 1852 | static void its_free_pending_table(struct page *pt) |
| 1853 | { |
| 1854 | free_pages((unsigned long)page_address(pt), |
| 1855 | get_order(max_t(u32, LPI_PENDBASE_SZ, SZ_64K))); |
| 1856 | } |
| 1857 | |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1858 | static void its_cpu_init_lpis(void) |
| 1859 | { |
| 1860 | void __iomem *rbase = gic_data_rdist_rd_base(); |
| 1861 | struct page *pend_page; |
| 1862 | u64 val, tmp; |
| 1863 | |
| 1864 | /* If we didn't allocate the pending table yet, do it now */ |
| 1865 | pend_page = gic_data_rdist()->pend_page; |
| 1866 | if (!pend_page) { |
| 1867 | phys_addr_t paddr; |
Marc Zyngier | 7c297a2 | 2016-12-19 18:34:38 +0000 | [diff] [blame] | 1868 | |
| 1869 | pend_page = its_allocate_pending_table(GFP_NOWAIT); |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1870 | if (!pend_page) { |
| 1871 | pr_err("Failed to allocate PENDBASE for CPU%d\n", |
| 1872 | smp_processor_id()); |
| 1873 | return; |
| 1874 | } |
| 1875 | |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1876 | paddr = page_to_phys(pend_page); |
| 1877 | pr_info("CPU%d: using LPI pending table @%pa\n", |
| 1878 | smp_processor_id(), &paddr); |
| 1879 | gic_data_rdist()->pend_page = pend_page; |
| 1880 | } |
| 1881 | |
| 1882 | /* Disable LPIs */ |
| 1883 | val = readl_relaxed(rbase + GICR_CTLR); |
| 1884 | val &= ~GICR_CTLR_ENABLE_LPIS; |
| 1885 | writel_relaxed(val, rbase + GICR_CTLR); |
| 1886 | |
| 1887 | /* |
| 1888 | * Make sure any change to the table is observable by the GIC. |
| 1889 | */ |
| 1890 | dsb(sy); |
| 1891 | |
| 1892 | /* set PROPBASE */ |
| 1893 | val = (page_to_phys(gic_rdists->prop_page) | |
| 1894 | GICR_PROPBASER_InnerShareable | |
Shanker Donthineni | 2fd632a | 2017-01-25 21:51:41 -0600 | [diff] [blame] | 1895 | GICR_PROPBASER_RaWaWb | |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1896 | ((LPI_NRBITS - 1) & GICR_PROPBASER_IDBITS_MASK)); |
| 1897 | |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 1898 | gicr_write_propbaser(val, rbase + GICR_PROPBASER); |
| 1899 | tmp = gicr_read_propbaser(rbase + GICR_PROPBASER); |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1900 | |
| 1901 | if ((tmp ^ val) & GICR_PROPBASER_SHAREABILITY_MASK) { |
Marc Zyngier | 241a386 | 2015-03-27 14:15:05 +0000 | [diff] [blame] | 1902 | if (!(tmp & GICR_PROPBASER_SHAREABILITY_MASK)) { |
| 1903 | /* |
| 1904 | * The HW reports non-shareable, we must |
| 1905 | * remove the cacheability attributes as |
| 1906 | * well. |
| 1907 | */ |
| 1908 | val &= ~(GICR_PROPBASER_SHAREABILITY_MASK | |
| 1909 | GICR_PROPBASER_CACHEABILITY_MASK); |
| 1910 | val |= GICR_PROPBASER_nC; |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 1911 | gicr_write_propbaser(val, rbase + GICR_PROPBASER); |
Marc Zyngier | 241a386 | 2015-03-27 14:15:05 +0000 | [diff] [blame] | 1912 | } |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1913 | pr_info_once("GIC: using cache flushing for LPI property table\n"); |
| 1914 | gic_rdists->flags |= RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING; |
| 1915 | } |
| 1916 | |
| 1917 | /* set PENDBASE */ |
| 1918 | val = (page_to_phys(pend_page) | |
Marc Zyngier | 4ad3e36 | 2015-03-27 14:15:04 +0000 | [diff] [blame] | 1919 | GICR_PENDBASER_InnerShareable | |
Shanker Donthineni | 2fd632a | 2017-01-25 21:51:41 -0600 | [diff] [blame] | 1920 | GICR_PENDBASER_RaWaWb); |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1921 | |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 1922 | gicr_write_pendbaser(val, rbase + GICR_PENDBASER); |
| 1923 | tmp = gicr_read_pendbaser(rbase + GICR_PENDBASER); |
Marc Zyngier | 241a386 | 2015-03-27 14:15:05 +0000 | [diff] [blame] | 1924 | |
| 1925 | if (!(tmp & GICR_PENDBASER_SHAREABILITY_MASK)) { |
| 1926 | /* |
| 1927 | * The HW reports non-shareable, we must remove the |
| 1928 | * cacheability attributes as well. |
| 1929 | */ |
| 1930 | val &= ~(GICR_PENDBASER_SHAREABILITY_MASK | |
| 1931 | GICR_PENDBASER_CACHEABILITY_MASK); |
| 1932 | val |= GICR_PENDBASER_nC; |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 1933 | gicr_write_pendbaser(val, rbase + GICR_PENDBASER); |
Marc Zyngier | 241a386 | 2015-03-27 14:15:05 +0000 | [diff] [blame] | 1934 | } |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1935 | |
| 1936 | /* Enable LPIs */ |
| 1937 | val = readl_relaxed(rbase + GICR_CTLR); |
| 1938 | val |= GICR_CTLR_ENABLE_LPIS; |
| 1939 | writel_relaxed(val, rbase + GICR_CTLR); |
| 1940 | |
| 1941 | /* Make sure the GIC has seen the above */ |
| 1942 | dsb(sy); |
| 1943 | } |
| 1944 | |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 1945 | static void its_cpu_init_collection(struct its_node *its) |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1946 | { |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 1947 | int cpu = smp_processor_id(); |
| 1948 | u64 target; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1949 | |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 1950 | /* avoid cross node collections and its mapping */ |
| 1951 | if (its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144) { |
| 1952 | struct device_node *cpu_node; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1953 | |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 1954 | cpu_node = of_get_cpu_node(cpu, NULL); |
| 1955 | if (its->numa_node != NUMA_NO_NODE && |
| 1956 | its->numa_node != of_node_to_nid(cpu_node)) |
| 1957 | return; |
| 1958 | } |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1959 | |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 1960 | /* |
| 1961 | * We now have to bind each collection to its target |
| 1962 | * redistributor. |
| 1963 | */ |
| 1964 | if (gic_read_typer(its->base + GITS_TYPER) & GITS_TYPER_PTA) { |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1965 | /* |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 1966 | * This ITS wants the physical address of the |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1967 | * redistributor. |
| 1968 | */ |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 1969 | target = gic_data_rdist()->phys_base; |
| 1970 | } else { |
| 1971 | /* This ITS wants a linear CPU number. */ |
| 1972 | target = gic_read_typer(gic_data_rdist_rd_base() + GICR_TYPER); |
| 1973 | target = GICR_TYPER_CPU_NUMBER(target) << 16; |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1974 | } |
| 1975 | |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 1976 | /* Perform collection mapping */ |
| 1977 | its->collections[cpu].target_address = target; |
| 1978 | its->collections[cpu].col_id = cpu; |
| 1979 | |
| 1980 | its_send_mapc(its, &its->collections[cpu], 1); |
| 1981 | its_send_invall(its, &its->collections[cpu]); |
| 1982 | } |
| 1983 | |
| 1984 | static void its_cpu_init_collections(void) |
| 1985 | { |
| 1986 | struct its_node *its; |
| 1987 | |
| 1988 | spin_lock(&its_lock); |
| 1989 | |
| 1990 | list_for_each_entry(its, &its_nodes, entry) |
| 1991 | its_cpu_init_collection(its); |
| 1992 | |
Marc Zyngier | 1ac19ca | 2014-11-24 14:35:14 +0000 | [diff] [blame] | 1993 | spin_unlock(&its_lock); |
| 1994 | } |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 1995 | |
| 1996 | static struct its_device *its_find_device(struct its_node *its, u32 dev_id) |
| 1997 | { |
| 1998 | struct its_device *its_dev = NULL, *tmp; |
Marc Zyngier | 3e39e8f5 | 2015-03-06 16:37:43 +0000 | [diff] [blame] | 1999 | unsigned long flags; |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2000 | |
Marc Zyngier | 3e39e8f5 | 2015-03-06 16:37:43 +0000 | [diff] [blame] | 2001 | raw_spin_lock_irqsave(&its->lock, flags); |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2002 | |
| 2003 | list_for_each_entry(tmp, &its->its_device_list, entry) { |
| 2004 | if (tmp->device_id == dev_id) { |
| 2005 | its_dev = tmp; |
| 2006 | break; |
| 2007 | } |
| 2008 | } |
| 2009 | |
Marc Zyngier | 3e39e8f5 | 2015-03-06 16:37:43 +0000 | [diff] [blame] | 2010 | raw_spin_unlock_irqrestore(&its->lock, flags); |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2011 | |
| 2012 | return its_dev; |
| 2013 | } |
| 2014 | |
Shanker Donthineni | 466b7d1 | 2016-03-09 22:10:49 -0600 | [diff] [blame] | 2015 | static struct its_baser *its_get_baser(struct its_node *its, u32 type) |
| 2016 | { |
| 2017 | int i; |
| 2018 | |
| 2019 | for (i = 0; i < GITS_BASER_NR_REGS; i++) { |
| 2020 | if (GITS_BASER_TYPE(its->tables[i].val) == type) |
| 2021 | return &its->tables[i]; |
| 2022 | } |
| 2023 | |
| 2024 | return NULL; |
| 2025 | } |
| 2026 | |
Marc Zyngier | 70cc81e | 2016-12-19 18:53:02 +0000 | [diff] [blame] | 2027 | static bool its_alloc_table_entry(struct its_baser *baser, u32 id) |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 2028 | { |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 2029 | struct page *page; |
| 2030 | u32 esz, idx; |
| 2031 | __le64 *table; |
| 2032 | |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 2033 | /* Don't allow device id that exceeds single, flat table limit */ |
| 2034 | esz = GITS_BASER_ENTRY_SIZE(baser->val); |
| 2035 | if (!(baser->val & GITS_BASER_INDIRECT)) |
Marc Zyngier | 70cc81e | 2016-12-19 18:53:02 +0000 | [diff] [blame] | 2036 | return (id < (PAGE_ORDER_TO_SIZE(baser->order) / esz)); |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 2037 | |
| 2038 | /* Compute 1st level table index & check if that exceeds table limit */ |
Marc Zyngier | 70cc81e | 2016-12-19 18:53:02 +0000 | [diff] [blame] | 2039 | idx = id >> ilog2(baser->psz / esz); |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 2040 | if (idx >= (PAGE_ORDER_TO_SIZE(baser->order) / GITS_LVL1_ENTRY_SIZE)) |
| 2041 | return false; |
| 2042 | |
| 2043 | table = baser->base; |
| 2044 | |
| 2045 | /* Allocate memory for 2nd level table */ |
| 2046 | if (!table[idx]) { |
| 2047 | page = alloc_pages(GFP_KERNEL | __GFP_ZERO, get_order(baser->psz)); |
| 2048 | if (!page) |
| 2049 | return false; |
| 2050 | |
| 2051 | /* Flush Lvl2 table to PoC if hw doesn't support coherency */ |
| 2052 | if (!(baser->val & GITS_BASER_SHAREABILITY_MASK)) |
Vladimir Murzin | 328191c | 2016-11-02 11:54:05 +0000 | [diff] [blame] | 2053 | gic_flush_dcache_to_poc(page_address(page), baser->psz); |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 2054 | |
| 2055 | table[idx] = cpu_to_le64(page_to_phys(page) | GITS_BASER_VALID); |
| 2056 | |
| 2057 | /* Flush Lvl1 entry to PoC if hw doesn't support coherency */ |
| 2058 | if (!(baser->val & GITS_BASER_SHAREABILITY_MASK)) |
Vladimir Murzin | 328191c | 2016-11-02 11:54:05 +0000 | [diff] [blame] | 2059 | gic_flush_dcache_to_poc(table + idx, GITS_LVL1_ENTRY_SIZE); |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 2060 | |
| 2061 | /* Ensure updated table contents are visible to ITS hardware */ |
| 2062 | dsb(sy); |
| 2063 | } |
| 2064 | |
| 2065 | return true; |
| 2066 | } |
| 2067 | |
Marc Zyngier | 70cc81e | 2016-12-19 18:53:02 +0000 | [diff] [blame] | 2068 | static bool its_alloc_device_table(struct its_node *its, u32 dev_id) |
| 2069 | { |
| 2070 | struct its_baser *baser; |
| 2071 | |
| 2072 | baser = its_get_baser(its, GITS_BASER_TYPE_DEVICE); |
| 2073 | |
| 2074 | /* Don't allow device id that exceeds ITS hardware limit */ |
| 2075 | if (!baser) |
| 2076 | return (ilog2(dev_id) < its->device_ids); |
| 2077 | |
| 2078 | return its_alloc_table_entry(baser, dev_id); |
| 2079 | } |
| 2080 | |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 2081 | static bool its_alloc_vpe_table(u32 vpe_id) |
| 2082 | { |
| 2083 | struct its_node *its; |
| 2084 | |
| 2085 | /* |
| 2086 | * Make sure the L2 tables are allocated on *all* v4 ITSs. We |
| 2087 | * could try and only do it on ITSs corresponding to devices |
| 2088 | * that have interrupts targeted at this VPE, but the |
| 2089 | * complexity becomes crazy (and you have tons of memory |
| 2090 | * anyway, right?). |
| 2091 | */ |
| 2092 | list_for_each_entry(its, &its_nodes, entry) { |
| 2093 | struct its_baser *baser; |
| 2094 | |
| 2095 | if (!its->is_v4) |
| 2096 | continue; |
| 2097 | |
| 2098 | baser = its_get_baser(its, GITS_BASER_TYPE_VCPU); |
| 2099 | if (!baser) |
| 2100 | return false; |
| 2101 | |
| 2102 | if (!its_alloc_table_entry(baser, vpe_id)) |
| 2103 | return false; |
| 2104 | } |
| 2105 | |
| 2106 | return true; |
| 2107 | } |
| 2108 | |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2109 | static struct its_device *its_create_device(struct its_node *its, u32 dev_id, |
Marc Zyngier | 93f94ea | 2017-08-04 18:37:09 +0100 | [diff] [blame] | 2110 | int nvecs, bool alloc_lpis) |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2111 | { |
| 2112 | struct its_device *dev; |
Marc Zyngier | 93f94ea | 2017-08-04 18:37:09 +0100 | [diff] [blame] | 2113 | unsigned long *lpi_map = NULL; |
Marc Zyngier | 3e39e8f5 | 2015-03-06 16:37:43 +0000 | [diff] [blame] | 2114 | unsigned long flags; |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2115 | u16 *col_map = NULL; |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2116 | void *itt; |
| 2117 | int lpi_base; |
| 2118 | int nr_lpis; |
Marc Zyngier | c848126 | 2014-12-12 10:51:24 +0000 | [diff] [blame] | 2119 | int nr_ites; |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2120 | int sz; |
| 2121 | |
Shanker Donthineni | 3faf24e | 2016-06-06 18:17:32 -0500 | [diff] [blame] | 2122 | if (!its_alloc_device_table(its, dev_id)) |
Shanker Donthineni | 466b7d1 | 2016-03-09 22:10:49 -0600 | [diff] [blame] | 2123 | return NULL; |
| 2124 | |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2125 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Marc Zyngier | c848126 | 2014-12-12 10:51:24 +0000 | [diff] [blame] | 2126 | /* |
| 2127 | * At least one bit of EventID is being used, hence a minimum |
| 2128 | * of two entries. No, the architecture doesn't let you |
| 2129 | * express an ITT with a single entry. |
| 2130 | */ |
Will Deacon | 96555c4 | 2014-12-17 14:11:09 +0000 | [diff] [blame] | 2131 | nr_ites = max(2UL, roundup_pow_of_two(nvecs)); |
Marc Zyngier | c848126 | 2014-12-12 10:51:24 +0000 | [diff] [blame] | 2132 | sz = nr_ites * its->ite_size; |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2133 | sz = max(sz, ITS_ITT_ALIGN) + ITS_ITT_ALIGN - 1; |
Yun Wu | 6c83412 | 2015-03-06 16:37:46 +0000 | [diff] [blame] | 2134 | itt = kzalloc(sz, GFP_KERNEL); |
Marc Zyngier | 93f94ea | 2017-08-04 18:37:09 +0100 | [diff] [blame] | 2135 | if (alloc_lpis) { |
| 2136 | lpi_map = its_lpi_alloc_chunks(nvecs, &lpi_base, &nr_lpis); |
| 2137 | if (lpi_map) |
| 2138 | col_map = kzalloc(sizeof(*col_map) * nr_lpis, |
| 2139 | GFP_KERNEL); |
| 2140 | } else { |
| 2141 | col_map = kzalloc(sizeof(*col_map) * nr_ites, GFP_KERNEL); |
| 2142 | nr_lpis = 0; |
| 2143 | lpi_base = 0; |
| 2144 | } |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2145 | |
Marc Zyngier | 93f94ea | 2017-08-04 18:37:09 +0100 | [diff] [blame] | 2146 | if (!dev || !itt || !col_map || (!lpi_map && alloc_lpis)) { |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2147 | kfree(dev); |
| 2148 | kfree(itt); |
| 2149 | kfree(lpi_map); |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2150 | kfree(col_map); |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2151 | return NULL; |
| 2152 | } |
| 2153 | |
Vladimir Murzin | 328191c | 2016-11-02 11:54:05 +0000 | [diff] [blame] | 2154 | gic_flush_dcache_to_poc(itt, sz); |
Marc Zyngier | 5a9a891 | 2015-09-13 12:14:32 +0100 | [diff] [blame] | 2155 | |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2156 | dev->its = its; |
| 2157 | dev->itt = itt; |
Marc Zyngier | c848126 | 2014-12-12 10:51:24 +0000 | [diff] [blame] | 2158 | dev->nr_ites = nr_ites; |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2159 | dev->event_map.lpi_map = lpi_map; |
| 2160 | dev->event_map.col_map = col_map; |
| 2161 | dev->event_map.lpi_base = lpi_base; |
| 2162 | dev->event_map.nr_lpis = nr_lpis; |
Marc Zyngier | d011e4e | 2016-12-20 09:44:41 +0000 | [diff] [blame] | 2163 | mutex_init(&dev->event_map.vlpi_lock); |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2164 | dev->device_id = dev_id; |
| 2165 | INIT_LIST_HEAD(&dev->entry); |
| 2166 | |
Marc Zyngier | 3e39e8f5 | 2015-03-06 16:37:43 +0000 | [diff] [blame] | 2167 | raw_spin_lock_irqsave(&its->lock, flags); |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2168 | list_add(&dev->entry, &its->its_device_list); |
Marc Zyngier | 3e39e8f5 | 2015-03-06 16:37:43 +0000 | [diff] [blame] | 2169 | raw_spin_unlock_irqrestore(&its->lock, flags); |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2170 | |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2171 | /* Map device to its ITT */ |
| 2172 | its_send_mapd(dev, 1); |
| 2173 | |
| 2174 | return dev; |
| 2175 | } |
| 2176 | |
| 2177 | static void its_free_device(struct its_device *its_dev) |
| 2178 | { |
Marc Zyngier | 3e39e8f5 | 2015-03-06 16:37:43 +0000 | [diff] [blame] | 2179 | unsigned long flags; |
| 2180 | |
| 2181 | raw_spin_lock_irqsave(&its_dev->its->lock, flags); |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2182 | list_del(&its_dev->entry); |
Marc Zyngier | 3e39e8f5 | 2015-03-06 16:37:43 +0000 | [diff] [blame] | 2183 | raw_spin_unlock_irqrestore(&its_dev->its->lock, flags); |
Marc Zyngier | 84a6a2e | 2014-11-24 14:35:15 +0000 | [diff] [blame] | 2184 | kfree(its_dev->itt); |
| 2185 | kfree(its_dev); |
| 2186 | } |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2187 | |
| 2188 | static int its_alloc_device_irq(struct its_device *dev, irq_hw_number_t *hwirq) |
| 2189 | { |
| 2190 | int idx; |
| 2191 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2192 | idx = find_first_zero_bit(dev->event_map.lpi_map, |
| 2193 | dev->event_map.nr_lpis); |
| 2194 | if (idx == dev->event_map.nr_lpis) |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2195 | return -ENOSPC; |
| 2196 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2197 | *hwirq = dev->event_map.lpi_base + idx; |
| 2198 | set_bit(idx, dev->event_map.lpi_map); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2199 | |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2200 | return 0; |
| 2201 | } |
| 2202 | |
Marc Zyngier | 54456db | 2015-07-28 14:46:21 +0100 | [diff] [blame] | 2203 | static int its_msi_prepare(struct irq_domain *domain, struct device *dev, |
| 2204 | int nvec, msi_alloc_info_t *info) |
Marc Zyngier | e8137f4 | 2015-03-06 16:37:42 +0000 | [diff] [blame] | 2205 | { |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2206 | struct its_node *its; |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2207 | struct its_device *its_dev; |
Marc Zyngier | 54456db | 2015-07-28 14:46:21 +0100 | [diff] [blame] | 2208 | struct msi_domain_info *msi_info; |
| 2209 | u32 dev_id; |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2210 | |
Marc Zyngier | 54456db | 2015-07-28 14:46:21 +0100 | [diff] [blame] | 2211 | /* |
| 2212 | * We ignore "dev" entierely, and rely on the dev_id that has |
| 2213 | * been passed via the scratchpad. This limits this domain's |
| 2214 | * usefulness to upper layers that definitely know that they |
| 2215 | * are built on top of the ITS. |
| 2216 | */ |
| 2217 | dev_id = info->scratchpad[0].ul; |
| 2218 | |
| 2219 | msi_info = msi_get_domain_info(domain); |
| 2220 | its = msi_info->data; |
| 2221 | |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 2222 | if (!gic_rdists->has_direct_lpi && |
| 2223 | vpe_proxy.dev && |
| 2224 | vpe_proxy.dev->its == its && |
| 2225 | dev_id == vpe_proxy.dev->device_id) { |
| 2226 | /* Bad luck. Get yourself a better implementation */ |
| 2227 | WARN_ONCE(1, "DevId %x clashes with GICv4 VPE proxy device\n", |
| 2228 | dev_id); |
| 2229 | return -EINVAL; |
| 2230 | } |
| 2231 | |
Marc Zyngier | f130420 | 2015-07-28 14:46:18 +0100 | [diff] [blame] | 2232 | its_dev = its_find_device(its, dev_id); |
Marc Zyngier | e8137f4 | 2015-03-06 16:37:42 +0000 | [diff] [blame] | 2233 | if (its_dev) { |
| 2234 | /* |
| 2235 | * We already have seen this ID, probably through |
| 2236 | * another alias (PCI bridge of some sort). No need to |
| 2237 | * create the device. |
| 2238 | */ |
Marc Zyngier | f130420 | 2015-07-28 14:46:18 +0100 | [diff] [blame] | 2239 | pr_debug("Reusing ITT for devID %x\n", dev_id); |
Marc Zyngier | e8137f4 | 2015-03-06 16:37:42 +0000 | [diff] [blame] | 2240 | goto out; |
| 2241 | } |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2242 | |
Marc Zyngier | 93f94ea | 2017-08-04 18:37:09 +0100 | [diff] [blame] | 2243 | its_dev = its_create_device(its, dev_id, nvec, true); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2244 | if (!its_dev) |
| 2245 | return -ENOMEM; |
| 2246 | |
Marc Zyngier | f130420 | 2015-07-28 14:46:18 +0100 | [diff] [blame] | 2247 | pr_debug("ITT %d entries, %d bits\n", nvec, ilog2(nvec)); |
Marc Zyngier | e8137f4 | 2015-03-06 16:37:42 +0000 | [diff] [blame] | 2248 | out: |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2249 | info->scratchpad[0].ptr = its_dev; |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2250 | return 0; |
| 2251 | } |
| 2252 | |
Marc Zyngier | 54456db | 2015-07-28 14:46:21 +0100 | [diff] [blame] | 2253 | static struct msi_domain_ops its_msi_domain_ops = { |
| 2254 | .msi_prepare = its_msi_prepare, |
| 2255 | }; |
| 2256 | |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2257 | static int its_irq_gic_domain_alloc(struct irq_domain *domain, |
| 2258 | unsigned int virq, |
| 2259 | irq_hw_number_t hwirq) |
| 2260 | { |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 2261 | struct irq_fwspec fwspec; |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2262 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 2263 | if (irq_domain_get_of_node(domain->parent)) { |
| 2264 | fwspec.fwnode = domain->parent->fwnode; |
| 2265 | fwspec.param_count = 3; |
| 2266 | fwspec.param[0] = GIC_IRQ_TYPE_LPI; |
| 2267 | fwspec.param[1] = hwirq; |
| 2268 | fwspec.param[2] = IRQ_TYPE_EDGE_RISING; |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 2269 | } else if (is_fwnode_irqchip(domain->parent->fwnode)) { |
| 2270 | fwspec.fwnode = domain->parent->fwnode; |
| 2271 | fwspec.param_count = 2; |
| 2272 | fwspec.param[0] = hwirq; |
| 2273 | fwspec.param[1] = IRQ_TYPE_EDGE_RISING; |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 2274 | } else { |
| 2275 | return -EINVAL; |
| 2276 | } |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2277 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 2278 | return irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2279 | } |
| 2280 | |
| 2281 | static int its_irq_domain_alloc(struct irq_domain *domain, unsigned int virq, |
| 2282 | unsigned int nr_irqs, void *args) |
| 2283 | { |
| 2284 | msi_alloc_info_t *info = args; |
| 2285 | struct its_device *its_dev = info->scratchpad[0].ptr; |
| 2286 | irq_hw_number_t hwirq; |
| 2287 | int err; |
| 2288 | int i; |
| 2289 | |
| 2290 | for (i = 0; i < nr_irqs; i++) { |
| 2291 | err = its_alloc_device_irq(its_dev, &hwirq); |
| 2292 | if (err) |
| 2293 | return err; |
| 2294 | |
| 2295 | err = its_irq_gic_domain_alloc(domain, virq + i, hwirq); |
| 2296 | if (err) |
| 2297 | return err; |
| 2298 | |
| 2299 | irq_domain_set_hwirq_and_chip(domain, virq + i, |
| 2300 | hwirq, &its_irq_chip, its_dev); |
Marc Zyngier | 0d224d3 | 2017-08-18 09:39:18 +0100 | [diff] [blame] | 2301 | irqd_set_single_target(irq_desc_get_irq_data(irq_to_desc(virq + i))); |
Marc Zyngier | f130420 | 2015-07-28 14:46:18 +0100 | [diff] [blame] | 2302 | pr_debug("ID:%d pID:%d vID:%d\n", |
| 2303 | (int)(hwirq - its_dev->event_map.lpi_base), |
| 2304 | (int) hwirq, virq + i); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2305 | } |
| 2306 | |
| 2307 | return 0; |
| 2308 | } |
| 2309 | |
Thomas Gleixner | 7249164 | 2017-09-13 23:29:10 +0200 | [diff] [blame] | 2310 | static int its_irq_domain_activate(struct irq_domain *domain, |
Thomas Gleixner | 702cb0a | 2017-12-29 16:59:06 +0100 | [diff] [blame] | 2311 | struct irq_data *d, bool reserve) |
Marc Zyngier | aca268d | 2014-12-12 10:51:23 +0000 | [diff] [blame] | 2312 | { |
| 2313 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 2314 | u32 event = its_get_event_id(d); |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 2315 | const struct cpumask *cpu_mask = cpu_online_mask; |
Marc Zyngier | 0d224d3 | 2017-08-18 09:39:18 +0100 | [diff] [blame] | 2316 | int cpu; |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 2317 | |
| 2318 | /* get the cpu_mask of local node */ |
| 2319 | if (its_dev->its->numa_node >= 0) |
| 2320 | cpu_mask = cpumask_of_node(its_dev->its->numa_node); |
Marc Zyngier | aca268d | 2014-12-12 10:51:23 +0000 | [diff] [blame] | 2321 | |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2322 | /* Bind the LPI to the first possible CPU */ |
Marc Zyngier | 0d224d3 | 2017-08-18 09:39:18 +0100 | [diff] [blame] | 2323 | cpu = cpumask_first(cpu_mask); |
| 2324 | its_dev->event_map.col_map[event] = cpu; |
| 2325 | irq_data_update_effective_affinity(d, cpumask_of(cpu)); |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2326 | |
Marc Zyngier | aca268d | 2014-12-12 10:51:23 +0000 | [diff] [blame] | 2327 | /* Map the GIC IRQ and event to the device */ |
Marc Zyngier | 6a25ad3 | 2016-12-20 15:52:26 +0000 | [diff] [blame] | 2328 | its_send_mapti(its_dev, d->hwirq, event); |
Thomas Gleixner | 7249164 | 2017-09-13 23:29:10 +0200 | [diff] [blame] | 2329 | return 0; |
Marc Zyngier | aca268d | 2014-12-12 10:51:23 +0000 | [diff] [blame] | 2330 | } |
| 2331 | |
| 2332 | static void its_irq_domain_deactivate(struct irq_domain *domain, |
| 2333 | struct irq_data *d) |
| 2334 | { |
| 2335 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 2336 | u32 event = its_get_event_id(d); |
| 2337 | |
| 2338 | /* Stop the delivery of interrupts */ |
| 2339 | its_send_discard(its_dev, event); |
| 2340 | } |
| 2341 | |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2342 | static void its_irq_domain_free(struct irq_domain *domain, unsigned int virq, |
| 2343 | unsigned int nr_irqs) |
| 2344 | { |
| 2345 | struct irq_data *d = irq_domain_get_irq_data(domain, virq); |
| 2346 | struct its_device *its_dev = irq_data_get_irq_chip_data(d); |
| 2347 | int i; |
| 2348 | |
| 2349 | for (i = 0; i < nr_irqs; i++) { |
| 2350 | struct irq_data *data = irq_domain_get_irq_data(domain, |
| 2351 | virq + i); |
Marc Zyngier | aca268d | 2014-12-12 10:51:23 +0000 | [diff] [blame] | 2352 | u32 event = its_get_event_id(data); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2353 | |
| 2354 | /* Mark interrupt index as unused */ |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2355 | clear_bit(event, its_dev->event_map.lpi_map); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2356 | |
| 2357 | /* Nuke the entry in the domain */ |
Marc Zyngier | 2da3994 | 2014-12-12 10:51:22 +0000 | [diff] [blame] | 2358 | irq_domain_reset_irq_data(data); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2359 | } |
| 2360 | |
| 2361 | /* If all interrupts have been freed, start mopping the floor */ |
Marc Zyngier | 591e5be | 2015-07-17 10:46:42 +0100 | [diff] [blame] | 2362 | if (bitmap_empty(its_dev->event_map.lpi_map, |
| 2363 | its_dev->event_map.nr_lpis)) { |
Marc Zyngier | cf2be8b | 2016-12-19 18:49:59 +0000 | [diff] [blame] | 2364 | its_lpi_free_chunks(its_dev->event_map.lpi_map, |
| 2365 | its_dev->event_map.lpi_base, |
| 2366 | its_dev->event_map.nr_lpis); |
| 2367 | kfree(its_dev->event_map.col_map); |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2368 | |
| 2369 | /* Unmap device/itt */ |
| 2370 | its_send_mapd(its_dev, 0); |
| 2371 | its_free_device(its_dev); |
| 2372 | } |
| 2373 | |
| 2374 | irq_domain_free_irqs_parent(domain, virq, nr_irqs); |
| 2375 | } |
| 2376 | |
| 2377 | static const struct irq_domain_ops its_domain_ops = { |
| 2378 | .alloc = its_irq_domain_alloc, |
| 2379 | .free = its_irq_domain_free, |
Marc Zyngier | aca268d | 2014-12-12 10:51:23 +0000 | [diff] [blame] | 2380 | .activate = its_irq_domain_activate, |
| 2381 | .deactivate = its_irq_domain_deactivate, |
Marc Zyngier | b48ac83 | 2014-11-24 14:35:16 +0000 | [diff] [blame] | 2382 | }; |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 2383 | |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 2384 | /* |
| 2385 | * This is insane. |
| 2386 | * |
| 2387 | * If a GICv4 doesn't implement Direct LPIs (which is extremely |
| 2388 | * likely), the only way to perform an invalidate is to use a fake |
| 2389 | * device to issue an INV command, implying that the LPI has first |
| 2390 | * been mapped to some event on that device. Since this is not exactly |
| 2391 | * cheap, we try to keep that mapping around as long as possible, and |
| 2392 | * only issue an UNMAP if we're short on available slots. |
| 2393 | * |
| 2394 | * Broken by design(tm). |
| 2395 | */ |
| 2396 | static void its_vpe_db_proxy_unmap_locked(struct its_vpe *vpe) |
| 2397 | { |
| 2398 | /* Already unmapped? */ |
| 2399 | if (vpe->vpe_proxy_event == -1) |
| 2400 | return; |
| 2401 | |
| 2402 | its_send_discard(vpe_proxy.dev, vpe->vpe_proxy_event); |
| 2403 | vpe_proxy.vpes[vpe->vpe_proxy_event] = NULL; |
| 2404 | |
| 2405 | /* |
| 2406 | * We don't track empty slots at all, so let's move the |
| 2407 | * next_victim pointer if we can quickly reuse that slot |
| 2408 | * instead of nuking an existing entry. Not clear that this is |
| 2409 | * always a win though, and this might just generate a ripple |
| 2410 | * effect... Let's just hope VPEs don't migrate too often. |
| 2411 | */ |
| 2412 | if (vpe_proxy.vpes[vpe_proxy.next_victim]) |
| 2413 | vpe_proxy.next_victim = vpe->vpe_proxy_event; |
| 2414 | |
| 2415 | vpe->vpe_proxy_event = -1; |
| 2416 | } |
| 2417 | |
| 2418 | static void its_vpe_db_proxy_unmap(struct its_vpe *vpe) |
| 2419 | { |
| 2420 | if (!gic_rdists->has_direct_lpi) { |
| 2421 | unsigned long flags; |
| 2422 | |
| 2423 | raw_spin_lock_irqsave(&vpe_proxy.lock, flags); |
| 2424 | its_vpe_db_proxy_unmap_locked(vpe); |
| 2425 | raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags); |
| 2426 | } |
| 2427 | } |
| 2428 | |
| 2429 | static void its_vpe_db_proxy_map_locked(struct its_vpe *vpe) |
| 2430 | { |
| 2431 | /* Already mapped? */ |
| 2432 | if (vpe->vpe_proxy_event != -1) |
| 2433 | return; |
| 2434 | |
| 2435 | /* This slot was already allocated. Kick the other VPE out. */ |
| 2436 | if (vpe_proxy.vpes[vpe_proxy.next_victim]) |
| 2437 | its_vpe_db_proxy_unmap_locked(vpe_proxy.vpes[vpe_proxy.next_victim]); |
| 2438 | |
| 2439 | /* Map the new VPE instead */ |
| 2440 | vpe_proxy.vpes[vpe_proxy.next_victim] = vpe; |
| 2441 | vpe->vpe_proxy_event = vpe_proxy.next_victim; |
| 2442 | vpe_proxy.next_victim = (vpe_proxy.next_victim + 1) % vpe_proxy.dev->nr_ites; |
| 2443 | |
| 2444 | vpe_proxy.dev->event_map.col_map[vpe->vpe_proxy_event] = vpe->col_idx; |
| 2445 | its_send_mapti(vpe_proxy.dev, vpe->vpe_db_lpi, vpe->vpe_proxy_event); |
| 2446 | } |
| 2447 | |
Marc Zyngier | 958b90d | 2017-08-18 16:14:17 +0100 | [diff] [blame] | 2448 | static void its_vpe_db_proxy_move(struct its_vpe *vpe, int from, int to) |
| 2449 | { |
| 2450 | unsigned long flags; |
| 2451 | struct its_collection *target_col; |
| 2452 | |
| 2453 | if (gic_rdists->has_direct_lpi) { |
| 2454 | void __iomem *rdbase; |
| 2455 | |
| 2456 | rdbase = per_cpu_ptr(gic_rdists->rdist, from)->rd_base; |
| 2457 | gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_CLRLPIR); |
| 2458 | while (gic_read_lpir(rdbase + GICR_SYNCR) & 1) |
| 2459 | cpu_relax(); |
| 2460 | |
| 2461 | return; |
| 2462 | } |
| 2463 | |
| 2464 | raw_spin_lock_irqsave(&vpe_proxy.lock, flags); |
| 2465 | |
| 2466 | its_vpe_db_proxy_map_locked(vpe); |
| 2467 | |
| 2468 | target_col = &vpe_proxy.dev->its->collections[to]; |
| 2469 | its_send_movi(vpe_proxy.dev, target_col, vpe->vpe_proxy_event); |
| 2470 | vpe_proxy.dev->event_map.col_map[vpe->vpe_proxy_event] = to; |
| 2471 | |
| 2472 | raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags); |
| 2473 | } |
| 2474 | |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 2475 | static int its_vpe_set_affinity(struct irq_data *d, |
| 2476 | const struct cpumask *mask_val, |
| 2477 | bool force) |
| 2478 | { |
| 2479 | struct its_vpe *vpe = irq_data_get_irq_chip_data(d); |
| 2480 | int cpu = cpumask_first(mask_val); |
| 2481 | |
| 2482 | /* |
| 2483 | * Changing affinity is mega expensive, so let's be as lazy as |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 2484 | * we can and only do it if we really have to. Also, if mapped |
Marc Zyngier | 958b90d | 2017-08-18 16:14:17 +0100 | [diff] [blame] | 2485 | * into the proxy device, we need to move the doorbell |
| 2486 | * interrupt to its new location. |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 2487 | */ |
| 2488 | if (vpe->col_idx != cpu) { |
Marc Zyngier | 958b90d | 2017-08-18 16:14:17 +0100 | [diff] [blame] | 2489 | int from = vpe->col_idx; |
| 2490 | |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 2491 | vpe->col_idx = cpu; |
| 2492 | its_send_vmovp(vpe); |
Marc Zyngier | 958b90d | 2017-08-18 16:14:17 +0100 | [diff] [blame] | 2493 | its_vpe_db_proxy_move(vpe, from, cpu); |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 2494 | } |
| 2495 | |
Marc Zyngier | 44c4c25 | 2017-10-19 10:11:34 +0100 | [diff] [blame] | 2496 | irq_data_update_effective_affinity(d, cpumask_of(cpu)); |
| 2497 | |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 2498 | return IRQ_SET_MASK_OK_DONE; |
| 2499 | } |
| 2500 | |
Marc Zyngier | e643d80 | 2016-12-20 15:09:31 +0000 | [diff] [blame] | 2501 | static void its_vpe_schedule(struct its_vpe *vpe) |
| 2502 | { |
| 2503 | void * __iomem vlpi_base = gic_data_rdist_vlpi_base(); |
| 2504 | u64 val; |
| 2505 | |
| 2506 | /* Schedule the VPE */ |
| 2507 | val = virt_to_phys(page_address(vpe->its_vm->vprop_page)) & |
| 2508 | GENMASK_ULL(51, 12); |
| 2509 | val |= (LPI_NRBITS - 1) & GICR_VPROPBASER_IDBITS_MASK; |
| 2510 | val |= GICR_VPROPBASER_RaWb; |
| 2511 | val |= GICR_VPROPBASER_InnerShareable; |
| 2512 | gits_write_vpropbaser(val, vlpi_base + GICR_VPROPBASER); |
| 2513 | |
| 2514 | val = virt_to_phys(page_address(vpe->vpt_page)) & |
| 2515 | GENMASK_ULL(51, 16); |
| 2516 | val |= GICR_VPENDBASER_RaWaWb; |
| 2517 | val |= GICR_VPENDBASER_NonShareable; |
| 2518 | /* |
| 2519 | * There is no good way of finding out if the pending table is |
| 2520 | * empty as we can race against the doorbell interrupt very |
| 2521 | * easily. So in the end, vpe->pending_last is only an |
| 2522 | * indication that the vcpu has something pending, not one |
| 2523 | * that the pending table is empty. A good implementation |
| 2524 | * would be able to read its coarse map pretty quickly anyway, |
| 2525 | * making this a tolerable issue. |
| 2526 | */ |
| 2527 | val |= GICR_VPENDBASER_PendingLast; |
| 2528 | val |= vpe->idai ? GICR_VPENDBASER_IDAI : 0; |
| 2529 | val |= GICR_VPENDBASER_Valid; |
| 2530 | gits_write_vpendbaser(val, vlpi_base + GICR_VPENDBASER); |
| 2531 | } |
| 2532 | |
| 2533 | static void its_vpe_deschedule(struct its_vpe *vpe) |
| 2534 | { |
| 2535 | void * __iomem vlpi_base = gic_data_rdist_vlpi_base(); |
| 2536 | u32 count = 1000000; /* 1s! */ |
| 2537 | bool clean; |
| 2538 | u64 val; |
| 2539 | |
| 2540 | /* We're being scheduled out */ |
| 2541 | val = gits_read_vpendbaser(vlpi_base + GICR_VPENDBASER); |
| 2542 | val &= ~GICR_VPENDBASER_Valid; |
| 2543 | gits_write_vpendbaser(val, vlpi_base + GICR_VPENDBASER); |
| 2544 | |
| 2545 | do { |
| 2546 | val = gits_read_vpendbaser(vlpi_base + GICR_VPENDBASER); |
| 2547 | clean = !(val & GICR_VPENDBASER_Dirty); |
| 2548 | if (!clean) { |
| 2549 | count--; |
| 2550 | cpu_relax(); |
| 2551 | udelay(1); |
| 2552 | } |
| 2553 | } while (!clean && count); |
| 2554 | |
| 2555 | if (unlikely(!clean && !count)) { |
| 2556 | pr_err_ratelimited("ITS virtual pending table not cleaning\n"); |
| 2557 | vpe->idai = false; |
| 2558 | vpe->pending_last = true; |
| 2559 | } else { |
| 2560 | vpe->idai = !!(val & GICR_VPENDBASER_IDAI); |
| 2561 | vpe->pending_last = !!(val & GICR_VPENDBASER_PendingLast); |
| 2562 | } |
| 2563 | } |
| 2564 | |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 2565 | static void its_vpe_invall(struct its_vpe *vpe) |
| 2566 | { |
| 2567 | struct its_node *its; |
| 2568 | |
| 2569 | list_for_each_entry(its, &its_nodes, entry) { |
| 2570 | if (!its->is_v4) |
| 2571 | continue; |
| 2572 | |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 2573 | if (its_list_map && !vpe->its_vm->vlpi_count[its->list_nr]) |
| 2574 | continue; |
| 2575 | |
Marc Zyngier | 3c1ccee | 2017-10-09 13:17:43 +0100 | [diff] [blame] | 2576 | /* |
| 2577 | * Sending a VINVALL to a single ITS is enough, as all |
| 2578 | * we need is to reach the redistributors. |
| 2579 | */ |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 2580 | its_send_vinvall(its, vpe); |
Marc Zyngier | 3c1ccee | 2017-10-09 13:17:43 +0100 | [diff] [blame] | 2581 | return; |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 2582 | } |
| 2583 | } |
| 2584 | |
Marc Zyngier | e643d80 | 2016-12-20 15:09:31 +0000 | [diff] [blame] | 2585 | static int its_vpe_set_vcpu_affinity(struct irq_data *d, void *vcpu_info) |
| 2586 | { |
| 2587 | struct its_vpe *vpe = irq_data_get_irq_chip_data(d); |
| 2588 | struct its_cmd_info *info = vcpu_info; |
| 2589 | |
| 2590 | switch (info->cmd_type) { |
| 2591 | case SCHEDULE_VPE: |
| 2592 | its_vpe_schedule(vpe); |
| 2593 | return 0; |
| 2594 | |
| 2595 | case DESCHEDULE_VPE: |
| 2596 | its_vpe_deschedule(vpe); |
| 2597 | return 0; |
| 2598 | |
Marc Zyngier | 5e2f764 | 2016-12-20 15:10:50 +0000 | [diff] [blame] | 2599 | case INVALL_VPE: |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 2600 | its_vpe_invall(vpe); |
Marc Zyngier | 5e2f764 | 2016-12-20 15:10:50 +0000 | [diff] [blame] | 2601 | return 0; |
| 2602 | |
Marc Zyngier | e643d80 | 2016-12-20 15:09:31 +0000 | [diff] [blame] | 2603 | default: |
| 2604 | return -EINVAL; |
| 2605 | } |
| 2606 | } |
| 2607 | |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 2608 | static void its_vpe_send_cmd(struct its_vpe *vpe, |
| 2609 | void (*cmd)(struct its_device *, u32)) |
| 2610 | { |
| 2611 | unsigned long flags; |
| 2612 | |
| 2613 | raw_spin_lock_irqsave(&vpe_proxy.lock, flags); |
| 2614 | |
| 2615 | its_vpe_db_proxy_map_locked(vpe); |
| 2616 | cmd(vpe_proxy.dev, vpe->vpe_proxy_event); |
| 2617 | |
| 2618 | raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags); |
| 2619 | } |
| 2620 | |
Marc Zyngier | f6a91da | 2016-12-20 15:20:38 +0000 | [diff] [blame] | 2621 | static void its_vpe_send_inv(struct irq_data *d) |
| 2622 | { |
| 2623 | struct its_vpe *vpe = irq_data_get_irq_chip_data(d); |
Marc Zyngier | f6a91da | 2016-12-20 15:20:38 +0000 | [diff] [blame] | 2624 | |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 2625 | if (gic_rdists->has_direct_lpi) { |
| 2626 | void __iomem *rdbase; |
| 2627 | |
| 2628 | rdbase = per_cpu_ptr(gic_rdists->rdist, vpe->col_idx)->rd_base; |
| 2629 | gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_INVLPIR); |
| 2630 | while (gic_read_lpir(rdbase + GICR_SYNCR) & 1) |
| 2631 | cpu_relax(); |
| 2632 | } else { |
| 2633 | its_vpe_send_cmd(vpe, its_send_inv); |
| 2634 | } |
Marc Zyngier | f6a91da | 2016-12-20 15:20:38 +0000 | [diff] [blame] | 2635 | } |
| 2636 | |
| 2637 | static void its_vpe_mask_irq(struct irq_data *d) |
| 2638 | { |
| 2639 | /* |
| 2640 | * We need to unmask the LPI, which is described by the parent |
| 2641 | * irq_data. Instead of calling into the parent (which won't |
| 2642 | * exactly do the right thing, let's simply use the |
| 2643 | * parent_data pointer. Yes, I'm naughty. |
| 2644 | */ |
| 2645 | lpi_write_config(d->parent_data, LPI_PROP_ENABLED, 0); |
| 2646 | its_vpe_send_inv(d); |
| 2647 | } |
| 2648 | |
| 2649 | static void its_vpe_unmask_irq(struct irq_data *d) |
| 2650 | { |
| 2651 | /* Same hack as above... */ |
| 2652 | lpi_write_config(d->parent_data, 0, LPI_PROP_ENABLED); |
| 2653 | its_vpe_send_inv(d); |
| 2654 | } |
| 2655 | |
Marc Zyngier | e57a3e28 | 2017-07-31 14:47:24 +0100 | [diff] [blame] | 2656 | static int its_vpe_set_irqchip_state(struct irq_data *d, |
| 2657 | enum irqchip_irq_state which, |
| 2658 | bool state) |
| 2659 | { |
| 2660 | struct its_vpe *vpe = irq_data_get_irq_chip_data(d); |
| 2661 | |
| 2662 | if (which != IRQCHIP_STATE_PENDING) |
| 2663 | return -EINVAL; |
| 2664 | |
| 2665 | if (gic_rdists->has_direct_lpi) { |
| 2666 | void __iomem *rdbase; |
| 2667 | |
| 2668 | rdbase = per_cpu_ptr(gic_rdists->rdist, vpe->col_idx)->rd_base; |
| 2669 | if (state) { |
| 2670 | gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_SETLPIR); |
| 2671 | } else { |
| 2672 | gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_CLRLPIR); |
| 2673 | while (gic_read_lpir(rdbase + GICR_SYNCR) & 1) |
| 2674 | cpu_relax(); |
| 2675 | } |
| 2676 | } else { |
| 2677 | if (state) |
| 2678 | its_vpe_send_cmd(vpe, its_send_int); |
| 2679 | else |
| 2680 | its_vpe_send_cmd(vpe, its_send_clear); |
| 2681 | } |
| 2682 | |
| 2683 | return 0; |
| 2684 | } |
| 2685 | |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 2686 | static struct irq_chip its_vpe_irq_chip = { |
| 2687 | .name = "GICv4-vpe", |
Marc Zyngier | f6a91da | 2016-12-20 15:20:38 +0000 | [diff] [blame] | 2688 | .irq_mask = its_vpe_mask_irq, |
| 2689 | .irq_unmask = its_vpe_unmask_irq, |
| 2690 | .irq_eoi = irq_chip_eoi_parent, |
Marc Zyngier | 3171a47 | 2016-12-20 15:17:28 +0000 | [diff] [blame] | 2691 | .irq_set_affinity = its_vpe_set_affinity, |
Marc Zyngier | e57a3e28 | 2017-07-31 14:47:24 +0100 | [diff] [blame] | 2692 | .irq_set_irqchip_state = its_vpe_set_irqchip_state, |
Marc Zyngier | e643d80 | 2016-12-20 15:09:31 +0000 | [diff] [blame] | 2693 | .irq_set_vcpu_affinity = its_vpe_set_vcpu_affinity, |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 2694 | }; |
| 2695 | |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 2696 | static int its_vpe_id_alloc(void) |
| 2697 | { |
Shanker Donthineni | 32bd44d | 2017-10-07 15:43:48 -0500 | [diff] [blame] | 2698 | return ida_simple_get(&its_vpeid_ida, 0, ITS_MAX_VPEID, GFP_KERNEL); |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 2699 | } |
| 2700 | |
| 2701 | static void its_vpe_id_free(u16 id) |
| 2702 | { |
| 2703 | ida_simple_remove(&its_vpeid_ida, id); |
| 2704 | } |
| 2705 | |
| 2706 | static int its_vpe_init(struct its_vpe *vpe) |
| 2707 | { |
| 2708 | struct page *vpt_page; |
| 2709 | int vpe_id; |
| 2710 | |
| 2711 | /* Allocate vpe_id */ |
| 2712 | vpe_id = its_vpe_id_alloc(); |
| 2713 | if (vpe_id < 0) |
| 2714 | return vpe_id; |
| 2715 | |
| 2716 | /* Allocate VPT */ |
| 2717 | vpt_page = its_allocate_pending_table(GFP_KERNEL); |
| 2718 | if (!vpt_page) { |
| 2719 | its_vpe_id_free(vpe_id); |
| 2720 | return -ENOMEM; |
| 2721 | } |
| 2722 | |
| 2723 | if (!its_alloc_vpe_table(vpe_id)) { |
| 2724 | its_vpe_id_free(vpe_id); |
| 2725 | its_free_pending_table(vpe->vpt_page); |
| 2726 | return -ENOMEM; |
| 2727 | } |
| 2728 | |
| 2729 | vpe->vpe_id = vpe_id; |
| 2730 | vpe->vpt_page = vpt_page; |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 2731 | vpe->vpe_proxy_event = -1; |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 2732 | |
| 2733 | return 0; |
| 2734 | } |
| 2735 | |
| 2736 | static void its_vpe_teardown(struct its_vpe *vpe) |
| 2737 | { |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 2738 | its_vpe_db_proxy_unmap(vpe); |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 2739 | its_vpe_id_free(vpe->vpe_id); |
| 2740 | its_free_pending_table(vpe->vpt_page); |
| 2741 | } |
| 2742 | |
| 2743 | static void its_vpe_irq_domain_free(struct irq_domain *domain, |
| 2744 | unsigned int virq, |
| 2745 | unsigned int nr_irqs) |
| 2746 | { |
| 2747 | struct its_vm *vm = domain->host_data; |
| 2748 | int i; |
| 2749 | |
| 2750 | irq_domain_free_irqs_parent(domain, virq, nr_irqs); |
| 2751 | |
| 2752 | for (i = 0; i < nr_irqs; i++) { |
| 2753 | struct irq_data *data = irq_domain_get_irq_data(domain, |
| 2754 | virq + i); |
| 2755 | struct its_vpe *vpe = irq_data_get_irq_chip_data(data); |
| 2756 | |
| 2757 | BUG_ON(vm != vpe->its_vm); |
| 2758 | |
| 2759 | clear_bit(data->hwirq, vm->db_bitmap); |
| 2760 | its_vpe_teardown(vpe); |
| 2761 | irq_domain_reset_irq_data(data); |
| 2762 | } |
| 2763 | |
| 2764 | if (bitmap_empty(vm->db_bitmap, vm->nr_db_lpis)) { |
| 2765 | its_lpi_free_chunks(vm->db_bitmap, vm->db_lpi_base, vm->nr_db_lpis); |
| 2766 | its_free_prop_table(vm->vprop_page); |
| 2767 | } |
| 2768 | } |
| 2769 | |
| 2770 | static int its_vpe_irq_domain_alloc(struct irq_domain *domain, unsigned int virq, |
| 2771 | unsigned int nr_irqs, void *args) |
| 2772 | { |
| 2773 | struct its_vm *vm = args; |
| 2774 | unsigned long *bitmap; |
| 2775 | struct page *vprop_page; |
| 2776 | int base, nr_ids, i, err = 0; |
| 2777 | |
| 2778 | BUG_ON(!vm); |
| 2779 | |
| 2780 | bitmap = its_lpi_alloc_chunks(nr_irqs, &base, &nr_ids); |
| 2781 | if (!bitmap) |
| 2782 | return -ENOMEM; |
| 2783 | |
| 2784 | if (nr_ids < nr_irqs) { |
| 2785 | its_lpi_free_chunks(bitmap, base, nr_ids); |
| 2786 | return -ENOMEM; |
| 2787 | } |
| 2788 | |
| 2789 | vprop_page = its_allocate_prop_table(GFP_KERNEL); |
| 2790 | if (!vprop_page) { |
| 2791 | its_lpi_free_chunks(bitmap, base, nr_ids); |
| 2792 | return -ENOMEM; |
| 2793 | } |
| 2794 | |
| 2795 | vm->db_bitmap = bitmap; |
| 2796 | vm->db_lpi_base = base; |
| 2797 | vm->nr_db_lpis = nr_ids; |
| 2798 | vm->vprop_page = vprop_page; |
| 2799 | |
| 2800 | for (i = 0; i < nr_irqs; i++) { |
| 2801 | vm->vpes[i]->vpe_db_lpi = base + i; |
| 2802 | err = its_vpe_init(vm->vpes[i]); |
| 2803 | if (err) |
| 2804 | break; |
| 2805 | err = its_irq_gic_domain_alloc(domain, virq + i, |
| 2806 | vm->vpes[i]->vpe_db_lpi); |
| 2807 | if (err) |
| 2808 | break; |
| 2809 | irq_domain_set_hwirq_and_chip(domain, virq + i, i, |
| 2810 | &its_vpe_irq_chip, vm->vpes[i]); |
| 2811 | set_bit(i, bitmap); |
| 2812 | } |
| 2813 | |
| 2814 | if (err) { |
| 2815 | if (i > 0) |
| 2816 | its_vpe_irq_domain_free(domain, virq, i - 1); |
| 2817 | |
| 2818 | its_lpi_free_chunks(bitmap, base, nr_ids); |
| 2819 | its_free_prop_table(vprop_page); |
| 2820 | } |
| 2821 | |
| 2822 | return err; |
| 2823 | } |
| 2824 | |
Thomas Gleixner | 7249164 | 2017-09-13 23:29:10 +0200 | [diff] [blame] | 2825 | static int its_vpe_irq_domain_activate(struct irq_domain *domain, |
Thomas Gleixner | 702cb0a | 2017-12-29 16:59:06 +0100 | [diff] [blame] | 2826 | struct irq_data *d, bool reserve) |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 2827 | { |
| 2828 | struct its_vpe *vpe = irq_data_get_irq_chip_data(d); |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 2829 | struct its_node *its; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 2830 | |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 2831 | /* If we use the list map, we issue VMAPP on demand... */ |
| 2832 | if (its_list_map) |
Marc Zyngier | 6ef930f | 2017-11-07 10:04:38 +0000 | [diff] [blame] | 2833 | return 0; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 2834 | |
| 2835 | /* Map the VPE to the first possible CPU */ |
| 2836 | vpe->col_idx = cpumask_first(cpu_online_mask); |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 2837 | |
| 2838 | list_for_each_entry(its, &its_nodes, entry) { |
| 2839 | if (!its->is_v4) |
| 2840 | continue; |
| 2841 | |
Marc Zyngier | 75fd951 | 2017-10-08 18:46:39 +0100 | [diff] [blame] | 2842 | its_send_vmapp(its, vpe, true); |
Marc Zyngier | 40619a2 | 2017-10-08 15:16:09 +0100 | [diff] [blame] | 2843 | its_send_vinvall(its, vpe); |
| 2844 | } |
| 2845 | |
Marc Zyngier | 44c4c25 | 2017-10-19 10:11:34 +0100 | [diff] [blame] | 2846 | irq_data_update_effective_affinity(d, cpumask_of(vpe->col_idx)); |
| 2847 | |
Thomas Gleixner | 7249164 | 2017-09-13 23:29:10 +0200 | [diff] [blame] | 2848 | return 0; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 2849 | } |
| 2850 | |
| 2851 | static void its_vpe_irq_domain_deactivate(struct irq_domain *domain, |
| 2852 | struct irq_data *d) |
| 2853 | { |
| 2854 | struct its_vpe *vpe = irq_data_get_irq_chip_data(d); |
Marc Zyngier | 75fd951 | 2017-10-08 18:46:39 +0100 | [diff] [blame] | 2855 | struct its_node *its; |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 2856 | |
Marc Zyngier | 2247e1b | 2017-10-08 18:50:36 +0100 | [diff] [blame] | 2857 | /* |
| 2858 | * If we use the list map, we unmap the VPE once no VLPIs are |
| 2859 | * associated with the VM. |
| 2860 | */ |
| 2861 | if (its_list_map) |
| 2862 | return; |
| 2863 | |
Marc Zyngier | 75fd951 | 2017-10-08 18:46:39 +0100 | [diff] [blame] | 2864 | list_for_each_entry(its, &its_nodes, entry) { |
| 2865 | if (!its->is_v4) |
| 2866 | continue; |
| 2867 | |
| 2868 | its_send_vmapp(its, vpe, false); |
| 2869 | } |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 2870 | } |
| 2871 | |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 2872 | static const struct irq_domain_ops its_vpe_domain_ops = { |
Marc Zyngier | 7d75bbb | 2016-12-20 13:55:54 +0000 | [diff] [blame] | 2873 | .alloc = its_vpe_irq_domain_alloc, |
| 2874 | .free = its_vpe_irq_domain_free, |
Marc Zyngier | eb78192 | 2016-12-20 14:47:05 +0000 | [diff] [blame] | 2875 | .activate = its_vpe_irq_domain_activate, |
| 2876 | .deactivate = its_vpe_irq_domain_deactivate, |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 2877 | }; |
| 2878 | |
Yun Wu | 4559fbb | 2015-03-06 16:37:50 +0000 | [diff] [blame] | 2879 | static int its_force_quiescent(void __iomem *base) |
| 2880 | { |
| 2881 | u32 count = 1000000; /* 1s */ |
| 2882 | u32 val; |
| 2883 | |
| 2884 | val = readl_relaxed(base + GITS_CTLR); |
David Daney | 7611da8 | 2016-08-18 15:41:58 -0700 | [diff] [blame] | 2885 | /* |
| 2886 | * GIC architecture specification requires the ITS to be both |
| 2887 | * disabled and quiescent for writes to GITS_BASER<n> or |
| 2888 | * GITS_CBASER to not have UNPREDICTABLE results. |
| 2889 | */ |
| 2890 | if ((val & GITS_CTLR_QUIESCENT) && !(val & GITS_CTLR_ENABLE)) |
Yun Wu | 4559fbb | 2015-03-06 16:37:50 +0000 | [diff] [blame] | 2891 | return 0; |
| 2892 | |
| 2893 | /* Disable the generation of all interrupts to this ITS */ |
Marc Zyngier | d51c4b4 | 2017-06-27 21:24:25 +0100 | [diff] [blame] | 2894 | val &= ~(GITS_CTLR_ENABLE | GITS_CTLR_ImDe); |
Yun Wu | 4559fbb | 2015-03-06 16:37:50 +0000 | [diff] [blame] | 2895 | writel_relaxed(val, base + GITS_CTLR); |
| 2896 | |
| 2897 | /* Poll GITS_CTLR and wait until ITS becomes quiescent */ |
| 2898 | while (1) { |
| 2899 | val = readl_relaxed(base + GITS_CTLR); |
| 2900 | if (val & GITS_CTLR_QUIESCENT) |
| 2901 | return 0; |
| 2902 | |
| 2903 | count--; |
| 2904 | if (!count) |
| 2905 | return -EBUSY; |
| 2906 | |
| 2907 | cpu_relax(); |
| 2908 | udelay(1); |
| 2909 | } |
| 2910 | } |
| 2911 | |
Ard Biesheuvel | 9d111d4 | 2017-10-17 17:55:55 +0100 | [diff] [blame] | 2912 | static bool __maybe_unused its_enable_quirk_cavium_22375(void *data) |
Robert Richter | 9410097 | 2015-09-21 22:58:38 +0200 | [diff] [blame] | 2913 | { |
| 2914 | struct its_node *its = data; |
| 2915 | |
Ard Biesheuvel | fa15001 | 2017-10-17 17:55:54 +0100 | [diff] [blame] | 2916 | /* erratum 22375: only alloc 8MB table size */ |
| 2917 | its->device_ids = 0x14; /* 20 bits, 8MB */ |
Robert Richter | 9410097 | 2015-09-21 22:58:38 +0200 | [diff] [blame] | 2918 | its->flags |= ITS_FLAGS_WORKAROUND_CAVIUM_22375; |
Ard Biesheuvel | 9d111d4 | 2017-10-17 17:55:55 +0100 | [diff] [blame] | 2919 | |
| 2920 | return true; |
Robert Richter | 9410097 | 2015-09-21 22:58:38 +0200 | [diff] [blame] | 2921 | } |
| 2922 | |
Ard Biesheuvel | 9d111d4 | 2017-10-17 17:55:55 +0100 | [diff] [blame] | 2923 | static bool __maybe_unused its_enable_quirk_cavium_23144(void *data) |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 2924 | { |
| 2925 | struct its_node *its = data; |
| 2926 | |
| 2927 | its->flags |= ITS_FLAGS_WORKAROUND_CAVIUM_23144; |
Ard Biesheuvel | 9d111d4 | 2017-10-17 17:55:55 +0100 | [diff] [blame] | 2928 | |
| 2929 | return true; |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 2930 | } |
| 2931 | |
Ard Biesheuvel | 9d111d4 | 2017-10-17 17:55:55 +0100 | [diff] [blame] | 2932 | static bool __maybe_unused its_enable_quirk_qdf2400_e0065(void *data) |
Shanker Donthineni | 90922a2 | 2017-03-07 08:20:38 -0600 | [diff] [blame] | 2933 | { |
| 2934 | struct its_node *its = data; |
| 2935 | |
| 2936 | /* On QDF2400, the size of the ITE is 16Bytes */ |
| 2937 | its->ite_size = 16; |
Ard Biesheuvel | 9d111d4 | 2017-10-17 17:55:55 +0100 | [diff] [blame] | 2938 | |
| 2939 | return true; |
Shanker Donthineni | 90922a2 | 2017-03-07 08:20:38 -0600 | [diff] [blame] | 2940 | } |
| 2941 | |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 2942 | static u64 its_irq_get_msi_base_pre_its(struct its_device *its_dev) |
| 2943 | { |
| 2944 | struct its_node *its = its_dev->its; |
| 2945 | |
| 2946 | /* |
| 2947 | * The Socionext Synquacer SoC has a so-called 'pre-ITS', |
| 2948 | * which maps 32-bit writes targeted at a separate window of |
| 2949 | * size '4 << device_id_bits' onto writes to GITS_TRANSLATER |
| 2950 | * with device ID taken from bits [device_id_bits + 1:2] of |
| 2951 | * the window offset. |
| 2952 | */ |
| 2953 | return its->pre_its_base + (its_dev->device_id << 2); |
| 2954 | } |
| 2955 | |
| 2956 | static bool __maybe_unused its_enable_quirk_socionext_synquacer(void *data) |
| 2957 | { |
| 2958 | struct its_node *its = data; |
| 2959 | u32 pre_its_window[2]; |
| 2960 | u32 ids; |
| 2961 | |
| 2962 | if (!fwnode_property_read_u32_array(its->fwnode_handle, |
| 2963 | "socionext,synquacer-pre-its", |
| 2964 | pre_its_window, |
| 2965 | ARRAY_SIZE(pre_its_window))) { |
| 2966 | |
| 2967 | its->pre_its_base = pre_its_window[0]; |
| 2968 | its->get_msi_base = its_irq_get_msi_base_pre_its; |
| 2969 | |
| 2970 | ids = ilog2(pre_its_window[1]) - 2; |
| 2971 | if (its->device_ids > ids) |
| 2972 | its->device_ids = ids; |
| 2973 | |
| 2974 | /* the pre-ITS breaks isolation, so disable MSI remapping */ |
| 2975 | its->msi_domain_flags &= ~IRQ_DOMAIN_FLAG_MSI_REMAP; |
| 2976 | return true; |
| 2977 | } |
| 2978 | return false; |
| 2979 | } |
| 2980 | |
Marc Zyngier | 5c9a882 | 2017-07-28 21:20:37 +0100 | [diff] [blame] | 2981 | static bool __maybe_unused its_enable_quirk_hip07_161600802(void *data) |
| 2982 | { |
| 2983 | struct its_node *its = data; |
| 2984 | |
| 2985 | /* |
| 2986 | * Hip07 insists on using the wrong address for the VLPI |
| 2987 | * page. Trick it into doing the right thing... |
| 2988 | */ |
| 2989 | its->vlpi_redist_offset = SZ_128K; |
| 2990 | return true; |
Marc Zyngier | cc2d321 | 2014-11-24 14:35:11 +0000 | [diff] [blame] | 2991 | } |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 2992 | |
Robert Richter | 67510cc | 2015-09-21 22:58:37 +0200 | [diff] [blame] | 2993 | static const struct gic_quirk its_quirks[] = { |
Robert Richter | 9410097 | 2015-09-21 22:58:38 +0200 | [diff] [blame] | 2994 | #ifdef CONFIG_CAVIUM_ERRATUM_22375 |
| 2995 | { |
| 2996 | .desc = "ITS: Cavium errata 22375, 24313", |
| 2997 | .iidr = 0xa100034c, /* ThunderX pass 1.x */ |
| 2998 | .mask = 0xffff0fff, |
| 2999 | .init = its_enable_quirk_cavium_22375, |
| 3000 | }, |
| 3001 | #endif |
Ganapatrao Kulkarni | fbf8f40 | 2016-05-25 15:29:20 +0200 | [diff] [blame] | 3002 | #ifdef CONFIG_CAVIUM_ERRATUM_23144 |
| 3003 | { |
| 3004 | .desc = "ITS: Cavium erratum 23144", |
| 3005 | .iidr = 0xa100034c, /* ThunderX pass 1.x */ |
| 3006 | .mask = 0xffff0fff, |
| 3007 | .init = its_enable_quirk_cavium_23144, |
| 3008 | }, |
| 3009 | #endif |
Shanker Donthineni | 90922a2 | 2017-03-07 08:20:38 -0600 | [diff] [blame] | 3010 | #ifdef CONFIG_QCOM_QDF2400_ERRATUM_0065 |
| 3011 | { |
| 3012 | .desc = "ITS: QDF2400 erratum 0065", |
| 3013 | .iidr = 0x00001070, /* QDF2400 ITS rev 1.x */ |
| 3014 | .mask = 0xffffffff, |
| 3015 | .init = its_enable_quirk_qdf2400_e0065, |
| 3016 | }, |
| 3017 | #endif |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 3018 | #ifdef CONFIG_SOCIONEXT_SYNQUACER_PREITS |
| 3019 | { |
| 3020 | /* |
| 3021 | * The Socionext Synquacer SoC incorporates ARM's own GIC-500 |
| 3022 | * implementation, but with a 'pre-ITS' added that requires |
| 3023 | * special handling in software. |
| 3024 | */ |
| 3025 | .desc = "ITS: Socionext Synquacer pre-ITS", |
| 3026 | .iidr = 0x0001143b, |
| 3027 | .mask = 0xffffffff, |
| 3028 | .init = its_enable_quirk_socionext_synquacer, |
| 3029 | }, |
| 3030 | #endif |
Marc Zyngier | 5c9a882 | 2017-07-28 21:20:37 +0100 | [diff] [blame] | 3031 | #ifdef CONFIG_HISILICON_ERRATUM_161600802 |
| 3032 | { |
| 3033 | .desc = "ITS: Hip07 erratum 161600802", |
| 3034 | .iidr = 0x00000004, |
| 3035 | .mask = 0xffffffff, |
| 3036 | .init = its_enable_quirk_hip07_161600802, |
| 3037 | }, |
| 3038 | #endif |
Robert Richter | 67510cc | 2015-09-21 22:58:37 +0200 | [diff] [blame] | 3039 | { |
| 3040 | } |
| 3041 | }; |
| 3042 | |
| 3043 | static void its_enable_quirks(struct its_node *its) |
| 3044 | { |
| 3045 | u32 iidr = readl_relaxed(its->base + GITS_IIDR); |
| 3046 | |
| 3047 | gic_enable_quirks(iidr, its_quirks, its); |
| 3048 | } |
| 3049 | |
Derek Basehore | dba0bc7 | 2018-02-28 21:48:18 -0800 | [diff] [blame] | 3050 | static int its_save_disable(void) |
| 3051 | { |
| 3052 | struct its_node *its; |
| 3053 | int err = 0; |
| 3054 | |
| 3055 | spin_lock(&its_lock); |
| 3056 | list_for_each_entry(its, &its_nodes, entry) { |
| 3057 | void __iomem *base; |
| 3058 | |
| 3059 | if (!(its->flags & ITS_FLAGS_SAVE_SUSPEND_STATE)) |
| 3060 | continue; |
| 3061 | |
| 3062 | base = its->base; |
| 3063 | its->ctlr_save = readl_relaxed(base + GITS_CTLR); |
| 3064 | err = its_force_quiescent(base); |
| 3065 | if (err) { |
| 3066 | pr_err("ITS@%pa: failed to quiesce: %d\n", |
| 3067 | &its->phys_base, err); |
| 3068 | writel_relaxed(its->ctlr_save, base + GITS_CTLR); |
| 3069 | goto err; |
| 3070 | } |
| 3071 | |
| 3072 | its->cbaser_save = gits_read_cbaser(base + GITS_CBASER); |
| 3073 | } |
| 3074 | |
| 3075 | err: |
| 3076 | if (err) { |
| 3077 | list_for_each_entry_continue_reverse(its, &its_nodes, entry) { |
| 3078 | void __iomem *base; |
| 3079 | |
| 3080 | if (!(its->flags & ITS_FLAGS_SAVE_SUSPEND_STATE)) |
| 3081 | continue; |
| 3082 | |
| 3083 | base = its->base; |
| 3084 | writel_relaxed(its->ctlr_save, base + GITS_CTLR); |
| 3085 | } |
| 3086 | } |
| 3087 | spin_unlock(&its_lock); |
| 3088 | |
| 3089 | return err; |
| 3090 | } |
| 3091 | |
| 3092 | static void its_restore_enable(void) |
| 3093 | { |
| 3094 | struct its_node *its; |
| 3095 | int ret; |
| 3096 | |
| 3097 | spin_lock(&its_lock); |
| 3098 | list_for_each_entry(its, &its_nodes, entry) { |
| 3099 | void __iomem *base; |
| 3100 | int i; |
| 3101 | |
| 3102 | if (!(its->flags & ITS_FLAGS_SAVE_SUSPEND_STATE)) |
| 3103 | continue; |
| 3104 | |
| 3105 | base = its->base; |
| 3106 | |
| 3107 | /* |
| 3108 | * Make sure that the ITS is disabled. If it fails to quiesce, |
| 3109 | * don't restore it since writing to CBASER or BASER<n> |
| 3110 | * registers is undefined according to the GIC v3 ITS |
| 3111 | * Specification. |
| 3112 | */ |
| 3113 | ret = its_force_quiescent(base); |
| 3114 | if (ret) { |
| 3115 | pr_err("ITS@%pa: failed to quiesce on resume: %d\n", |
| 3116 | &its->phys_base, ret); |
| 3117 | continue; |
| 3118 | } |
| 3119 | |
| 3120 | gits_write_cbaser(its->cbaser_save, base + GITS_CBASER); |
| 3121 | |
| 3122 | /* |
| 3123 | * Writing CBASER resets CREADR to 0, so make CWRITER and |
| 3124 | * cmd_write line up with it. |
| 3125 | */ |
| 3126 | its->cmd_write = its->cmd_base; |
| 3127 | gits_write_cwriter(0, base + GITS_CWRITER); |
| 3128 | |
| 3129 | /* Restore GITS_BASER from the value cache. */ |
| 3130 | for (i = 0; i < GITS_BASER_NR_REGS; i++) { |
| 3131 | struct its_baser *baser = &its->tables[i]; |
| 3132 | |
| 3133 | if (!(baser->val & GITS_BASER_VALID)) |
| 3134 | continue; |
| 3135 | |
| 3136 | its_write_baser(its, baser, baser->val); |
| 3137 | } |
| 3138 | writel_relaxed(its->ctlr_save, base + GITS_CTLR); |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 3139 | |
| 3140 | /* |
| 3141 | * Reinit the collection if it's stored in the ITS. This is |
| 3142 | * indicated by the col_id being less than the HCC field. |
| 3143 | * CID < HCC as specified in the GIC v3 Documentation. |
| 3144 | */ |
| 3145 | if (its->collections[smp_processor_id()].col_id < |
| 3146 | GITS_TYPER_HCC(gic_read_typer(base + GITS_TYPER))) |
| 3147 | its_cpu_init_collection(its); |
Derek Basehore | dba0bc7 | 2018-02-28 21:48:18 -0800 | [diff] [blame] | 3148 | } |
| 3149 | spin_unlock(&its_lock); |
| 3150 | } |
| 3151 | |
| 3152 | static struct syscore_ops its_syscore_ops = { |
| 3153 | .suspend = its_save_disable, |
| 3154 | .resume = its_restore_enable, |
| 3155 | }; |
| 3156 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3157 | static int its_init_domain(struct fwnode_handle *handle, struct its_node *its) |
Tomasz Nowicki | d14ae5e | 2016-09-12 20:32:23 +0200 | [diff] [blame] | 3158 | { |
| 3159 | struct irq_domain *inner_domain; |
| 3160 | struct msi_domain_info *info; |
| 3161 | |
| 3162 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 3163 | if (!info) |
| 3164 | return -ENOMEM; |
| 3165 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3166 | inner_domain = irq_domain_create_tree(handle, &its_domain_ops, its); |
Tomasz Nowicki | d14ae5e | 2016-09-12 20:32:23 +0200 | [diff] [blame] | 3167 | if (!inner_domain) { |
| 3168 | kfree(info); |
| 3169 | return -ENOMEM; |
| 3170 | } |
| 3171 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3172 | inner_domain->parent = its_parent; |
Marc Zyngier | 96f0d93 | 2017-06-22 11:42:50 +0100 | [diff] [blame] | 3173 | irq_domain_update_bus_token(inner_domain, DOMAIN_BUS_NEXUS); |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 3174 | inner_domain->flags |= its->msi_domain_flags; |
Tomasz Nowicki | d14ae5e | 2016-09-12 20:32:23 +0200 | [diff] [blame] | 3175 | info->ops = &its_msi_domain_ops; |
| 3176 | info->data = its; |
| 3177 | inner_domain->host_data = info; |
| 3178 | |
| 3179 | return 0; |
| 3180 | } |
| 3181 | |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 3182 | static int its_init_vpe_domain(void) |
| 3183 | { |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 3184 | struct its_node *its; |
| 3185 | u32 devid; |
| 3186 | int entries; |
| 3187 | |
| 3188 | if (gic_rdists->has_direct_lpi) { |
| 3189 | pr_info("ITS: Using DirectLPI for VPE invalidation\n"); |
| 3190 | return 0; |
| 3191 | } |
| 3192 | |
| 3193 | /* Any ITS will do, even if not v4 */ |
| 3194 | its = list_first_entry(&its_nodes, struct its_node, entry); |
| 3195 | |
| 3196 | entries = roundup_pow_of_two(nr_cpu_ids); |
| 3197 | vpe_proxy.vpes = kzalloc(sizeof(*vpe_proxy.vpes) * entries, |
| 3198 | GFP_KERNEL); |
| 3199 | if (!vpe_proxy.vpes) { |
| 3200 | pr_err("ITS: Can't allocate GICv4 proxy device array\n"); |
| 3201 | return -ENOMEM; |
| 3202 | } |
| 3203 | |
| 3204 | /* Use the last possible DevID */ |
| 3205 | devid = GENMASK(its->device_ids - 1, 0); |
| 3206 | vpe_proxy.dev = its_create_device(its, devid, entries, false); |
| 3207 | if (!vpe_proxy.dev) { |
| 3208 | kfree(vpe_proxy.vpes); |
| 3209 | pr_err("ITS: Can't allocate GICv4 proxy device\n"); |
| 3210 | return -ENOMEM; |
| 3211 | } |
| 3212 | |
Shanker Donthineni | c427a47 | 2017-09-23 13:50:19 -0500 | [diff] [blame] | 3213 | BUG_ON(entries > vpe_proxy.dev->nr_ites); |
Marc Zyngier | 20b3d54 | 2016-12-20 15:23:22 +0000 | [diff] [blame] | 3214 | |
| 3215 | raw_spin_lock_init(&vpe_proxy.lock); |
| 3216 | vpe_proxy.next_victim = 0; |
| 3217 | pr_info("ITS: Allocated DevID %x as GICv4 proxy device (%d slots)\n", |
| 3218 | devid, vpe_proxy.dev->nr_ites); |
| 3219 | |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 3220 | return 0; |
| 3221 | } |
| 3222 | |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 3223 | static int __init its_compute_its_list_map(struct resource *res, |
| 3224 | void __iomem *its_base) |
| 3225 | { |
| 3226 | int its_number; |
| 3227 | u32 ctlr; |
| 3228 | |
| 3229 | /* |
| 3230 | * This is assumed to be done early enough that we're |
| 3231 | * guaranteed to be single-threaded, hence no |
| 3232 | * locking. Should this change, we should address |
| 3233 | * this. |
| 3234 | */ |
Marc Zyngier | ab60491 | 2017-10-08 18:48:06 +0100 | [diff] [blame] | 3235 | its_number = find_first_zero_bit(&its_list_map, GICv4_ITS_LIST_MAX); |
| 3236 | if (its_number >= GICv4_ITS_LIST_MAX) { |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 3237 | pr_err("ITS@%pa: No ITSList entry available!\n", |
| 3238 | &res->start); |
| 3239 | return -EINVAL; |
| 3240 | } |
| 3241 | |
| 3242 | ctlr = readl_relaxed(its_base + GITS_CTLR); |
| 3243 | ctlr &= ~GITS_CTLR_ITS_NUMBER; |
| 3244 | ctlr |= its_number << GITS_CTLR_ITS_NUMBER_SHIFT; |
| 3245 | writel_relaxed(ctlr, its_base + GITS_CTLR); |
| 3246 | ctlr = readl_relaxed(its_base + GITS_CTLR); |
| 3247 | if ((ctlr & GITS_CTLR_ITS_NUMBER) != (its_number << GITS_CTLR_ITS_NUMBER_SHIFT)) { |
| 3248 | its_number = ctlr & GITS_CTLR_ITS_NUMBER; |
| 3249 | its_number >>= GITS_CTLR_ITS_NUMBER_SHIFT; |
| 3250 | } |
| 3251 | |
| 3252 | if (test_and_set_bit(its_number, &its_list_map)) { |
| 3253 | pr_err("ITS@%pa: Duplicate ITSList entry %d\n", |
| 3254 | &res->start, its_number); |
| 3255 | return -EINVAL; |
| 3256 | } |
| 3257 | |
| 3258 | return its_number; |
| 3259 | } |
| 3260 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3261 | static int __init its_probe_one(struct resource *res, |
| 3262 | struct fwnode_handle *handle, int numa_node) |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3263 | { |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3264 | struct its_node *its; |
| 3265 | void __iomem *its_base; |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 3266 | u32 val, ctlr; |
| 3267 | u64 baser, tmp, typer; |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3268 | int err; |
| 3269 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3270 | its_base = ioremap(res->start, resource_size(res)); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3271 | if (!its_base) { |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3272 | pr_warn("ITS@%pa: Unable to map ITS registers\n", &res->start); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3273 | return -ENOMEM; |
| 3274 | } |
| 3275 | |
| 3276 | val = readl_relaxed(its_base + GITS_PIDR2) & GIC_PIDR2_ARCH_MASK; |
| 3277 | if (val != 0x30 && val != 0x40) { |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3278 | pr_warn("ITS@%pa: No ITS detected, giving up\n", &res->start); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3279 | err = -ENODEV; |
| 3280 | goto out_unmap; |
| 3281 | } |
| 3282 | |
Yun Wu | 4559fbb | 2015-03-06 16:37:50 +0000 | [diff] [blame] | 3283 | err = its_force_quiescent(its_base); |
| 3284 | if (err) { |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3285 | pr_warn("ITS@%pa: Failed to quiesce, giving up\n", &res->start); |
Yun Wu | 4559fbb | 2015-03-06 16:37:50 +0000 | [diff] [blame] | 3286 | goto out_unmap; |
| 3287 | } |
| 3288 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3289 | pr_info("ITS %pR\n", res); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3290 | |
| 3291 | its = kzalloc(sizeof(*its), GFP_KERNEL); |
| 3292 | if (!its) { |
| 3293 | err = -ENOMEM; |
| 3294 | goto out_unmap; |
| 3295 | } |
| 3296 | |
| 3297 | raw_spin_lock_init(&its->lock); |
| 3298 | INIT_LIST_HEAD(&its->entry); |
| 3299 | INIT_LIST_HEAD(&its->its_device_list); |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 3300 | typer = gic_read_typer(its_base + GITS_TYPER); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3301 | its->base = its_base; |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3302 | its->phys_base = res->start; |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 3303 | its->ite_size = GITS_TYPER_ITT_ENTRY_SIZE(typer); |
Ard Biesheuvel | fa15001 | 2017-10-17 17:55:54 +0100 | [diff] [blame] | 3304 | its->device_ids = GITS_TYPER_DEVBITS(typer); |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 3305 | its->is_v4 = !!(typer & GITS_TYPER_VLPIS); |
| 3306 | if (its->is_v4) { |
| 3307 | if (!(typer & GITS_TYPER_VMOVP)) { |
| 3308 | err = its_compute_its_list_map(res, its_base); |
| 3309 | if (err < 0) |
| 3310 | goto out_free_its; |
| 3311 | |
Marc Zyngier | debf6d0 | 2017-10-08 18:44:42 +0100 | [diff] [blame] | 3312 | its->list_nr = err; |
| 3313 | |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 3314 | pr_info("ITS@%pa: Using ITS number %d\n", |
| 3315 | &res->start, err); |
| 3316 | } else { |
| 3317 | pr_info("ITS@%pa: Single VMOVP capable\n", &res->start); |
| 3318 | } |
| 3319 | } |
| 3320 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3321 | its->numa_node = numa_node; |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3322 | |
Robert Richter | 5bc13c2 | 2017-02-01 18:38:25 +0100 | [diff] [blame] | 3323 | its->cmd_base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, |
| 3324 | get_order(ITS_CMD_QUEUE_SZ)); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3325 | if (!its->cmd_base) { |
| 3326 | err = -ENOMEM; |
| 3327 | goto out_free_its; |
| 3328 | } |
| 3329 | its->cmd_write = its->cmd_base; |
Ard Biesheuvel | 558b016 | 2017-10-17 17:55:56 +0100 | [diff] [blame] | 3330 | its->fwnode_handle = handle; |
| 3331 | its->get_msi_base = its_irq_get_msi_base; |
| 3332 | its->msi_domain_flags = IRQ_DOMAIN_FLAG_MSI_REMAP; |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3333 | |
Robert Richter | 67510cc | 2015-09-21 22:58:37 +0200 | [diff] [blame] | 3334 | its_enable_quirks(its); |
| 3335 | |
Shanker Donthineni | 0e0b0f6 | 2016-06-06 18:17:31 -0500 | [diff] [blame] | 3336 | err = its_alloc_tables(its); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3337 | if (err) |
| 3338 | goto out_free_cmd; |
| 3339 | |
| 3340 | err = its_alloc_collections(its); |
| 3341 | if (err) |
| 3342 | goto out_free_tables; |
| 3343 | |
| 3344 | baser = (virt_to_phys(its->cmd_base) | |
Shanker Donthineni | 2fd632a | 2017-01-25 21:51:41 -0600 | [diff] [blame] | 3345 | GITS_CBASER_RaWaWb | |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3346 | GITS_CBASER_InnerShareable | |
| 3347 | (ITS_CMD_QUEUE_SZ / SZ_4K - 1) | |
| 3348 | GITS_CBASER_VALID); |
| 3349 | |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 3350 | gits_write_cbaser(baser, its->base + GITS_CBASER); |
| 3351 | tmp = gits_read_cbaser(its->base + GITS_CBASER); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3352 | |
Marc Zyngier | 4ad3e36 | 2015-03-27 14:15:04 +0000 | [diff] [blame] | 3353 | if ((tmp ^ baser) & GITS_CBASER_SHAREABILITY_MASK) { |
Marc Zyngier | 241a386 | 2015-03-27 14:15:05 +0000 | [diff] [blame] | 3354 | if (!(tmp & GITS_CBASER_SHAREABILITY_MASK)) { |
| 3355 | /* |
| 3356 | * The HW reports non-shareable, we must |
| 3357 | * remove the cacheability attributes as |
| 3358 | * well. |
| 3359 | */ |
| 3360 | baser &= ~(GITS_CBASER_SHAREABILITY_MASK | |
| 3361 | GITS_CBASER_CACHEABILITY_MASK); |
| 3362 | baser |= GITS_CBASER_nC; |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 3363 | gits_write_cbaser(baser, its->base + GITS_CBASER); |
Marc Zyngier | 241a386 | 2015-03-27 14:15:05 +0000 | [diff] [blame] | 3364 | } |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3365 | pr_info("ITS: using cache flushing for cmd queue\n"); |
| 3366 | its->flags |= ITS_FLAGS_CMDQ_NEEDS_FLUSHING; |
| 3367 | } |
| 3368 | |
Vladimir Murzin | 0968a61 | 2016-11-02 11:54:06 +0000 | [diff] [blame] | 3369 | gits_write_cwriter(0, its->base + GITS_CWRITER); |
Marc Zyngier | 3dfa576 | 2016-12-19 17:25:54 +0000 | [diff] [blame] | 3370 | ctlr = readl_relaxed(its->base + GITS_CTLR); |
Marc Zyngier | d51c4b4 | 2017-06-27 21:24:25 +0100 | [diff] [blame] | 3371 | ctlr |= GITS_CTLR_ENABLE; |
| 3372 | if (its->is_v4) |
| 3373 | ctlr |= GITS_CTLR_ImDe; |
| 3374 | writel_relaxed(ctlr, its->base + GITS_CTLR); |
Marc Zyngier | 241a386 | 2015-03-27 14:15:05 +0000 | [diff] [blame] | 3375 | |
Derek Basehore | dba0bc7 | 2018-02-28 21:48:18 -0800 | [diff] [blame] | 3376 | if (GITS_TYPER_HCC(typer)) |
| 3377 | its->flags |= ITS_FLAGS_SAVE_SUSPEND_STATE; |
| 3378 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3379 | err = its_init_domain(handle, its); |
Tomasz Nowicki | d14ae5e | 2016-09-12 20:32:23 +0200 | [diff] [blame] | 3380 | if (err) |
| 3381 | goto out_free_tables; |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3382 | |
| 3383 | spin_lock(&its_lock); |
| 3384 | list_add(&its->entry, &its_nodes); |
| 3385 | spin_unlock(&its_lock); |
| 3386 | |
| 3387 | return 0; |
| 3388 | |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3389 | out_free_tables: |
| 3390 | its_free_tables(its); |
| 3391 | out_free_cmd: |
Robert Richter | 5bc13c2 | 2017-02-01 18:38:25 +0100 | [diff] [blame] | 3392 | free_pages((unsigned long)its->cmd_base, get_order(ITS_CMD_QUEUE_SZ)); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3393 | out_free_its: |
| 3394 | kfree(its); |
| 3395 | out_unmap: |
| 3396 | iounmap(its_base); |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3397 | pr_err("ITS@%pa: failed probing (%d)\n", &res->start, err); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3398 | return err; |
| 3399 | } |
| 3400 | |
| 3401 | static bool gic_rdists_supports_plpis(void) |
| 3402 | { |
Marc Zyngier | 589ce5f | 2016-10-14 15:13:07 +0100 | [diff] [blame] | 3403 | return !!(gic_read_typer(gic_data_rdist_rd_base() + GICR_TYPER) & GICR_TYPER_PLPIS); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3404 | } |
| 3405 | |
| 3406 | int its_cpu_init(void) |
| 3407 | { |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3408 | if (!list_empty(&its_nodes)) { |
Vladimir Murzin | 16acae7 | 2015-03-06 16:37:40 +0000 | [diff] [blame] | 3409 | if (!gic_rdists_supports_plpis()) { |
| 3410 | pr_info("CPU%d: LPIs not supported\n", smp_processor_id()); |
| 3411 | return -ENXIO; |
| 3412 | } |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3413 | its_cpu_init_lpis(); |
Derek Basehore | 920181c | 2018-02-28 21:48:20 -0800 | [diff] [blame^] | 3414 | its_cpu_init_collections(); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3415 | } |
| 3416 | |
| 3417 | return 0; |
| 3418 | } |
| 3419 | |
Arvind Yadav | 935bba7 | 2017-06-22 16:05:30 +0530 | [diff] [blame] | 3420 | static const struct of_device_id its_device_id[] = { |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3421 | { .compatible = "arm,gic-v3-its", }, |
| 3422 | {}, |
| 3423 | }; |
| 3424 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3425 | static int __init its_of_probe(struct device_node *node) |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3426 | { |
| 3427 | struct device_node *np; |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3428 | struct resource res; |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3429 | |
| 3430 | for (np = of_find_matching_node(node, its_device_id); np; |
| 3431 | np = of_find_matching_node(np, its_device_id)) { |
Stephen Boyd | 95a2562 | 2018-02-01 09:03:29 -0800 | [diff] [blame] | 3432 | if (!of_device_is_available(np)) |
| 3433 | continue; |
Tomasz Nowicki | d14ae5e | 2016-09-12 20:32:23 +0200 | [diff] [blame] | 3434 | if (!of_property_read_bool(np, "msi-controller")) { |
Rob Herring | e81f54c | 2017-07-18 16:43:10 -0500 | [diff] [blame] | 3435 | pr_warn("%pOF: no msi-controller property, ITS ignored\n", |
| 3436 | np); |
Tomasz Nowicki | d14ae5e | 2016-09-12 20:32:23 +0200 | [diff] [blame] | 3437 | continue; |
| 3438 | } |
| 3439 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3440 | if (of_address_to_resource(np, 0, &res)) { |
Rob Herring | e81f54c | 2017-07-18 16:43:10 -0500 | [diff] [blame] | 3441 | pr_warn("%pOF: no regs?\n", np); |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3442 | continue; |
| 3443 | } |
| 3444 | |
| 3445 | its_probe_one(&res, &np->fwnode, of_node_to_nid(np)); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3446 | } |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3447 | return 0; |
| 3448 | } |
| 3449 | |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 3450 | #ifdef CONFIG_ACPI |
| 3451 | |
| 3452 | #define ACPI_GICV3_ITS_MEM_SIZE (SZ_128K) |
| 3453 | |
Robert Richter | d1ce263 | 2017-07-12 15:25:09 +0200 | [diff] [blame] | 3454 | #ifdef CONFIG_ACPI_NUMA |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3455 | struct its_srat_map { |
| 3456 | /* numa node id */ |
| 3457 | u32 numa_node; |
| 3458 | /* GIC ITS ID */ |
| 3459 | u32 its_id; |
| 3460 | }; |
| 3461 | |
Hanjun Guo | fdf6e7a | 2017-07-26 18:15:49 +0800 | [diff] [blame] | 3462 | static struct its_srat_map *its_srat_maps __initdata; |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3463 | static int its_in_srat __initdata; |
| 3464 | |
| 3465 | static int __init acpi_get_its_numa_node(u32 its_id) |
| 3466 | { |
| 3467 | int i; |
| 3468 | |
| 3469 | for (i = 0; i < its_in_srat; i++) { |
| 3470 | if (its_id == its_srat_maps[i].its_id) |
| 3471 | return its_srat_maps[i].numa_node; |
| 3472 | } |
| 3473 | return NUMA_NO_NODE; |
| 3474 | } |
| 3475 | |
Hanjun Guo | fdf6e7a | 2017-07-26 18:15:49 +0800 | [diff] [blame] | 3476 | static int __init gic_acpi_match_srat_its(struct acpi_subtable_header *header, |
| 3477 | const unsigned long end) |
| 3478 | { |
| 3479 | return 0; |
| 3480 | } |
| 3481 | |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3482 | static int __init gic_acpi_parse_srat_its(struct acpi_subtable_header *header, |
| 3483 | const unsigned long end) |
| 3484 | { |
| 3485 | int node; |
| 3486 | struct acpi_srat_gic_its_affinity *its_affinity; |
| 3487 | |
| 3488 | its_affinity = (struct acpi_srat_gic_its_affinity *)header; |
| 3489 | if (!its_affinity) |
| 3490 | return -EINVAL; |
| 3491 | |
| 3492 | if (its_affinity->header.length < sizeof(*its_affinity)) { |
| 3493 | pr_err("SRAT: Invalid header length %d in ITS affinity\n", |
| 3494 | its_affinity->header.length); |
| 3495 | return -EINVAL; |
| 3496 | } |
| 3497 | |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3498 | node = acpi_map_pxm_to_node(its_affinity->proximity_domain); |
| 3499 | |
| 3500 | if (node == NUMA_NO_NODE || node >= MAX_NUMNODES) { |
| 3501 | pr_err("SRAT: Invalid NUMA node %d in ITS affinity\n", node); |
| 3502 | return 0; |
| 3503 | } |
| 3504 | |
| 3505 | its_srat_maps[its_in_srat].numa_node = node; |
| 3506 | its_srat_maps[its_in_srat].its_id = its_affinity->its_id; |
| 3507 | its_in_srat++; |
| 3508 | pr_info("SRAT: PXM %d -> ITS %d -> Node %d\n", |
| 3509 | its_affinity->proximity_domain, its_affinity->its_id, node); |
| 3510 | |
| 3511 | return 0; |
| 3512 | } |
| 3513 | |
| 3514 | static void __init acpi_table_parse_srat_its(void) |
| 3515 | { |
Hanjun Guo | fdf6e7a | 2017-07-26 18:15:49 +0800 | [diff] [blame] | 3516 | int count; |
| 3517 | |
| 3518 | count = acpi_table_parse_entries(ACPI_SIG_SRAT, |
| 3519 | sizeof(struct acpi_table_srat), |
| 3520 | ACPI_SRAT_TYPE_GIC_ITS_AFFINITY, |
| 3521 | gic_acpi_match_srat_its, 0); |
| 3522 | if (count <= 0) |
| 3523 | return; |
| 3524 | |
| 3525 | its_srat_maps = kmalloc(count * sizeof(struct its_srat_map), |
| 3526 | GFP_KERNEL); |
| 3527 | if (!its_srat_maps) { |
| 3528 | pr_warn("SRAT: Failed to allocate memory for its_srat_maps!\n"); |
| 3529 | return; |
| 3530 | } |
| 3531 | |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3532 | acpi_table_parse_entries(ACPI_SIG_SRAT, |
| 3533 | sizeof(struct acpi_table_srat), |
| 3534 | ACPI_SRAT_TYPE_GIC_ITS_AFFINITY, |
| 3535 | gic_acpi_parse_srat_its, 0); |
| 3536 | } |
Hanjun Guo | fdf6e7a | 2017-07-26 18:15:49 +0800 | [diff] [blame] | 3537 | |
| 3538 | /* free the its_srat_maps after ITS probing */ |
| 3539 | static void __init acpi_its_srat_maps_free(void) |
| 3540 | { |
| 3541 | kfree(its_srat_maps); |
| 3542 | } |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3543 | #else |
| 3544 | static void __init acpi_table_parse_srat_its(void) { } |
| 3545 | static int __init acpi_get_its_numa_node(u32 its_id) { return NUMA_NO_NODE; } |
Hanjun Guo | fdf6e7a | 2017-07-26 18:15:49 +0800 | [diff] [blame] | 3546 | static void __init acpi_its_srat_maps_free(void) { } |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3547 | #endif |
| 3548 | |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 3549 | static int __init gic_acpi_parse_madt_its(struct acpi_subtable_header *header, |
| 3550 | const unsigned long end) |
| 3551 | { |
| 3552 | struct acpi_madt_generic_translator *its_entry; |
| 3553 | struct fwnode_handle *dom_handle; |
| 3554 | struct resource res; |
| 3555 | int err; |
| 3556 | |
| 3557 | its_entry = (struct acpi_madt_generic_translator *)header; |
| 3558 | memset(&res, 0, sizeof(res)); |
| 3559 | res.start = its_entry->base_address; |
| 3560 | res.end = its_entry->base_address + ACPI_GICV3_ITS_MEM_SIZE - 1; |
| 3561 | res.flags = IORESOURCE_MEM; |
| 3562 | |
| 3563 | dom_handle = irq_domain_alloc_fwnode((void *)its_entry->base_address); |
| 3564 | if (!dom_handle) { |
| 3565 | pr_err("ITS@%pa: Unable to allocate GICv3 ITS domain token\n", |
| 3566 | &res.start); |
| 3567 | return -ENOMEM; |
| 3568 | } |
| 3569 | |
| 3570 | err = iort_register_domain_token(its_entry->translation_id, dom_handle); |
| 3571 | if (err) { |
| 3572 | pr_err("ITS@%pa: Unable to register GICv3 ITS domain token (ITS ID %d) to IORT\n", |
| 3573 | &res.start, its_entry->translation_id); |
| 3574 | goto dom_err; |
| 3575 | } |
| 3576 | |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3577 | err = its_probe_one(&res, dom_handle, |
| 3578 | acpi_get_its_numa_node(its_entry->translation_id)); |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 3579 | if (!err) |
| 3580 | return 0; |
| 3581 | |
| 3582 | iort_deregister_domain_token(its_entry->translation_id); |
| 3583 | dom_err: |
| 3584 | irq_domain_free_fwnode(dom_handle); |
| 3585 | return err; |
| 3586 | } |
| 3587 | |
| 3588 | static void __init its_acpi_probe(void) |
| 3589 | { |
Ganapatrao Kulkarni | dbd2b82 | 2017-06-22 11:40:12 +0530 | [diff] [blame] | 3590 | acpi_table_parse_srat_its(); |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 3591 | acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_TRANSLATOR, |
| 3592 | gic_acpi_parse_madt_its, 0); |
Hanjun Guo | fdf6e7a | 2017-07-26 18:15:49 +0800 | [diff] [blame] | 3593 | acpi_its_srat_maps_free(); |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 3594 | } |
| 3595 | #else |
| 3596 | static void __init its_acpi_probe(void) { } |
| 3597 | #endif |
| 3598 | |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3599 | int __init its_init(struct fwnode_handle *handle, struct rdists *rdists, |
| 3600 | struct irq_domain *parent_domain) |
| 3601 | { |
| 3602 | struct device_node *of_node; |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 3603 | struct its_node *its; |
| 3604 | bool has_v4 = false; |
| 3605 | int err; |
Tomasz Nowicki | db40f0a | 2016-09-12 20:32:24 +0200 | [diff] [blame] | 3606 | |
| 3607 | its_parent = parent_domain; |
| 3608 | of_node = to_of_node(handle); |
| 3609 | if (of_node) |
| 3610 | its_of_probe(of_node); |
| 3611 | else |
Tomasz Nowicki | 3f010cf | 2016-09-12 20:32:25 +0200 | [diff] [blame] | 3612 | its_acpi_probe(); |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3613 | |
| 3614 | if (list_empty(&its_nodes)) { |
| 3615 | pr_warn("ITS: No ITS available, not enabling LPIs\n"); |
| 3616 | return -ENXIO; |
| 3617 | } |
| 3618 | |
| 3619 | gic_rdists = rdists; |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 3620 | err = its_alloc_lpi_tables(); |
| 3621 | if (err) |
| 3622 | return err; |
| 3623 | |
| 3624 | list_for_each_entry(its, &its_nodes, entry) |
| 3625 | has_v4 |= its->is_v4; |
| 3626 | |
| 3627 | if (has_v4 & rdists->has_vlpis) { |
Marc Zyngier | 3d63cb5 | 2016-12-20 15:31:54 +0000 | [diff] [blame] | 3628 | if (its_init_vpe_domain() || |
| 3629 | its_init_v4(parent_domain, &its_vpe_domain_ops)) { |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 3630 | rdists->has_vlpis = false; |
| 3631 | pr_err("ITS: Disabling GICv4 support\n"); |
| 3632 | } |
| 3633 | } |
| 3634 | |
Derek Basehore | dba0bc7 | 2018-02-28 21:48:18 -0800 | [diff] [blame] | 3635 | register_syscore_ops(&its_syscore_ops); |
| 3636 | |
Marc Zyngier | 8fff27a | 2016-12-20 13:41:55 +0000 | [diff] [blame] | 3637 | return 0; |
Marc Zyngier | 4c21f3c | 2014-11-24 14:35:17 +0000 | [diff] [blame] | 3638 | } |