blob: 62e54f1a248ba002942bc0bae0c6b97d52f9f857 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Marc Zyngiercc2d3212014-11-24 14:35:11 +00002/*
Marc Zyngierd7276b82016-12-20 15:11:47 +00003 * Copyright (C) 2013-2017 ARM Limited, All Rights Reserved.
Marc Zyngiercc2d3212014-11-24 14:35:11 +00004 * Author: Marc Zyngier <marc.zyngier@arm.com>
Marc Zyngiercc2d3212014-11-24 14:35:11 +00005 */
6
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02007#include <linux/acpi.h>
Hanjun Guo8d3554b2017-03-07 20:39:59 +08008#include <linux/acpi_iort.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +00009#include <linux/bitmap.h>
10#include <linux/cpu.h>
Marc Zyngierc6e2ccb2018-06-26 11:21:11 +010011#include <linux/crash_dump.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000012#include <linux/delay.h>
Robin Murphy44bb7e22016-09-12 17:13:59 +010013#include <linux/dma-iommu.h>
Marc Zyngier3fb68fa2018-07-27 16:21:18 +010014#include <linux/efi.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000015#include <linux/interrupt.h>
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +020016#include <linux/irqdomain.h>
Marc Zyngier880cb3c2018-05-27 16:14:15 +010017#include <linux/list.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000018#include <linux/log2.h>
Marc Zyngier5e2c9f92018-07-27 16:23:18 +010019#include <linux/memblock.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000020#include <linux/mm.h>
21#include <linux/msi.h>
22#include <linux/of.h>
23#include <linux/of_address.h>
24#include <linux/of_irq.h>
25#include <linux/of_pci.h>
26#include <linux/of_platform.h>
27#include <linux/percpu.h>
28#include <linux/slab.h>
Derek Basehoredba0bc72018-02-28 21:48:18 -080029#include <linux/syscore_ops.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000030
Joel Porquet41a83e062015-07-07 17:11:46 -040031#include <linux/irqchip.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000032#include <linux/irqchip/arm-gic-v3.h>
Marc Zyngierc808eea2016-12-20 09:31:20 +000033#include <linux/irqchip/arm-gic-v4.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000034
Marc Zyngiercc2d3212014-11-24 14:35:11 +000035#include <asm/cputype.h>
36#include <asm/exception.h>
37
Robert Richter67510cc2015-09-21 22:58:37 +020038#include "irq-gic-common.h"
39
Robert Richter94100972015-09-21 22:58:38 +020040#define ITS_FLAGS_CMDQ_NEEDS_FLUSHING (1ULL << 0)
41#define ITS_FLAGS_WORKAROUND_CAVIUM_22375 (1ULL << 1)
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +020042#define ITS_FLAGS_WORKAROUND_CAVIUM_23144 (1ULL << 2)
Derek Basehoredba0bc72018-02-28 21:48:18 -080043#define ITS_FLAGS_SAVE_SUSPEND_STATE (1ULL << 3)
Marc Zyngiercc2d3212014-11-24 14:35:11 +000044
Marc Zyngierc48ed512014-11-24 14:35:12 +000045#define RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING (1 << 0)
Marc Zyngierc440a9d2018-07-27 15:40:13 +010046#define RDIST_FLAGS_RD_TABLES_PREALLOCATED (1 << 1)
Marc Zyngierc48ed512014-11-24 14:35:12 +000047
Marc Zyngiera13b0402016-12-19 17:15:24 +000048static u32 lpi_id_bits;
49
50/*
51 * We allocate memory for PROPBASE to cover 2 ^ lpi_id_bits LPIs to
52 * deal with (one configuration byte per interrupt). PENDBASE has to
53 * be 64kB aligned (one bit per LPI, plus 8192 bits for SPI/PPI/SGI).
54 */
55#define LPI_NRBITS lpi_id_bits
56#define LPI_PROPBASE_SZ ALIGN(BIT(LPI_NRBITS), SZ_64K)
57#define LPI_PENDBASE_SZ ALIGN(BIT(LPI_NRBITS) / 8, SZ_64K)
58
Julien Thierry2130b782018-08-28 16:51:18 +010059#define LPI_PROP_DEFAULT_PRIO GICD_INT_DEF_PRI
Marc Zyngiera13b0402016-12-19 17:15:24 +000060
Marc Zyngiercc2d3212014-11-24 14:35:11 +000061/*
62 * Collection structure - just an ID, and a redistributor address to
63 * ping. We use one per CPU as a bag of interrupts assigned to this
64 * CPU.
65 */
66struct its_collection {
67 u64 target_address;
68 u16 col_id;
69};
70
71/*
Shanker Donthineni93473592016-06-06 18:17:30 -050072 * The ITS_BASER structure - contains memory information, cached
73 * value of BASER register configuration and ITS page size.
Shanker Donthineni466b7d12016-03-09 22:10:49 -060074 */
75struct its_baser {
76 void *base;
77 u64 val;
78 u32 order;
Shanker Donthineni93473592016-06-06 18:17:30 -050079 u32 psz;
Shanker Donthineni466b7d12016-03-09 22:10:49 -060080};
81
Ard Biesheuvel558b0162017-10-17 17:55:56 +010082struct its_device;
83
Shanker Donthineni466b7d12016-03-09 22:10:49 -060084/*
Marc Zyngiercc2d3212014-11-24 14:35:11 +000085 * The ITS structure - contains most of the infrastructure, with the
Marc Zyngier841514a2015-07-28 14:46:20 +010086 * top-level MSI domain, the command queue, the collections, and the
87 * list of devices writing to it.
Marc Zyngier9791ec72019-01-29 10:02:33 +000088 *
89 * dev_alloc_lock has to be taken for device allocations, while the
90 * spinlock must be taken to parse data structures such as the device
91 * list.
Marc Zyngiercc2d3212014-11-24 14:35:11 +000092 */
93struct its_node {
94 raw_spinlock_t lock;
Marc Zyngier9791ec72019-01-29 10:02:33 +000095 struct mutex dev_alloc_lock;
Marc Zyngiercc2d3212014-11-24 14:35:11 +000096 struct list_head entry;
Marc Zyngiercc2d3212014-11-24 14:35:11 +000097 void __iomem *base;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +020098 phys_addr_t phys_base;
Marc Zyngiercc2d3212014-11-24 14:35:11 +000099 struct its_cmd_block *cmd_base;
100 struct its_cmd_block *cmd_write;
Shanker Donthineni466b7d12016-03-09 22:10:49 -0600101 struct its_baser tables[GITS_BASER_NR_REGS];
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000102 struct its_collection *collections;
Ard Biesheuvel558b0162017-10-17 17:55:56 +0100103 struct fwnode_handle *fwnode_handle;
104 u64 (*get_msi_base)(struct its_device *its_dev);
Derek Basehoredba0bc72018-02-28 21:48:18 -0800105 u64 cbaser_save;
106 u32 ctlr_save;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000107 struct list_head its_device_list;
108 u64 flags;
Marc Zyngierdebf6d02017-10-08 18:44:42 +0100109 unsigned long list_nr;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000110 u32 ite_size;
Shanker Donthineni466b7d12016-03-09 22:10:49 -0600111 u32 device_ids;
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +0200112 int numa_node;
Ard Biesheuvel558b0162017-10-17 17:55:56 +0100113 unsigned int msi_domain_flags;
114 u32 pre_its_base; /* for Socionext Synquacer */
Marc Zyngier3dfa5762016-12-19 17:25:54 +0000115 bool is_v4;
Marc Zyngier5c9a8822017-07-28 21:20:37 +0100116 int vlpi_redist_offset;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000117};
118
119#define ITS_ITT_ALIGN SZ_256
120
Shanker Donthineni32bd44d2017-10-07 15:43:48 -0500121/* The maximum number of VPEID bits supported by VLPI commands */
122#define ITS_MAX_VPEID_BITS (16)
123#define ITS_MAX_VPEID (1 << (ITS_MAX_VPEID_BITS))
124
Shanker Donthineni2eca0d62016-02-16 18:00:36 -0600125/* Convert page order to size in bytes */
126#define PAGE_ORDER_TO_SIZE(o) (PAGE_SIZE << (o))
127
Marc Zyngier591e5be2015-07-17 10:46:42 +0100128struct event_lpi_map {
129 unsigned long *lpi_map;
130 u16 *col_map;
131 irq_hw_number_t lpi_base;
132 int nr_lpis;
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000133 struct mutex vlpi_lock;
134 struct its_vm *vm;
135 struct its_vlpi_map *vlpi_maps;
136 int nr_vlpis;
Marc Zyngier591e5be2015-07-17 10:46:42 +0100137};
138
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000139/*
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000140 * The ITS view of a device - belongs to an ITS, owns an interrupt
141 * translation table, and a list of interrupts. If it some of its
142 * LPIs are injected into a guest (GICv4), the event_map.vm field
143 * indicates which one.
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000144 */
145struct its_device {
146 struct list_head entry;
147 struct its_node *its;
Marc Zyngier591e5be2015-07-17 10:46:42 +0100148 struct event_lpi_map event_map;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000149 void *itt;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000150 u32 nr_ites;
151 u32 device_id;
Marc Zyngier9791ec72019-01-29 10:02:33 +0000152 bool shared;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000153};
154
Marc Zyngier20b3d542016-12-20 15:23:22 +0000155static 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 Zyngier1ac19ca2014-11-24 14:35:14 +0000162static LIST_HEAD(its_nodes);
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +0200163static DEFINE_RAW_SPINLOCK(its_lock);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000164static struct rdists *gic_rdists;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +0200165static struct irq_domain *its_parent;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000166
Marc Zyngier3dfa5762016-12-19 17:25:54 +0000167static unsigned long its_list_map;
Marc Zyngier3171a472016-12-20 15:17:28 +0000168static u16 vmovp_seq_num;
169static DEFINE_RAW_SPINLOCK(vmovp_lock);
170
Marc Zyngier7d75bbb2016-12-20 13:55:54 +0000171static DEFINE_IDA(its_vpeid_ida);
Marc Zyngier3dfa5762016-12-19 17:25:54 +0000172
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000173#define gic_data_rdist() (raw_cpu_ptr(gic_rdists->rdist))
Marc Zyngier11e37d32018-07-27 13:38:54 +0100174#define gic_data_rdist_cpu(cpu) (per_cpu_ptr(gic_rdists->rdist, cpu))
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000175#define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base)
Marc Zyngiere643d802016-12-20 15:09:31 +0000176#define gic_data_rdist_vlpi_base() (gic_data_rdist_rd_base() + SZ_128K)
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000177
Marc Zyngier591e5be2015-07-17 10:46:42 +0100178static struct its_collection *dev_event_to_col(struct its_device *its_dev,
179 u32 event)
180{
181 struct its_node *its = its_dev->its;
182
183 return its->collections + its_dev->event_map.col_map[event];
184}
185
Marc Zyngier83559b42018-06-22 10:52:52 +0100186static struct its_collection *valid_col(struct its_collection *col)
187{
Joe Perches20faba82019-07-09 22:04:18 -0700188 if (WARN_ON_ONCE(col->target_address & GENMASK_ULL(15, 0)))
Marc Zyngier83559b42018-06-22 10:52:52 +0100189 return NULL;
190
191 return col;
192}
193
Marc Zyngier205e0652018-06-22 10:52:53 +0100194static struct its_vpe *valid_vpe(struct its_node *its, struct its_vpe *vpe)
195{
196 if (valid_col(its->collections + vpe->col_idx))
197 return vpe;
198
199 return NULL;
200}
201
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000202/*
203 * ITS command descriptors - parameters to be encoded in a command
204 * block.
205 */
206struct its_cmd_desc {
207 union {
208 struct {
209 struct its_device *dev;
210 u32 event_id;
211 } its_inv_cmd;
212
213 struct {
214 struct its_device *dev;
215 u32 event_id;
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000216 } its_clear_cmd;
217
218 struct {
219 struct its_device *dev;
220 u32 event_id;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000221 } its_int_cmd;
222
223 struct {
224 struct its_device *dev;
225 int valid;
226 } its_mapd_cmd;
227
228 struct {
229 struct its_collection *col;
230 int valid;
231 } its_mapc_cmd;
232
233 struct {
234 struct its_device *dev;
235 u32 phys_id;
236 u32 event_id;
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000237 } its_mapti_cmd;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000238
239 struct {
240 struct its_device *dev;
241 struct its_collection *col;
Marc Zyngier591e5be2015-07-17 10:46:42 +0100242 u32 event_id;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000243 } its_movi_cmd;
244
245 struct {
246 struct its_device *dev;
247 u32 event_id;
248 } its_discard_cmd;
249
250 struct {
251 struct its_collection *col;
252 } its_invall_cmd;
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000253
254 struct {
255 struct its_vpe *vpe;
Marc Zyngiereb781922016-12-20 14:47:05 +0000256 } its_vinvall_cmd;
257
258 struct {
259 struct its_vpe *vpe;
260 struct its_collection *col;
261 bool valid;
262 } its_vmapp_cmd;
263
264 struct {
265 struct its_vpe *vpe;
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000266 struct its_device *dev;
267 u32 virt_id;
268 u32 event_id;
269 bool db_enabled;
270 } its_vmapti_cmd;
271
272 struct {
273 struct its_vpe *vpe;
274 struct its_device *dev;
275 u32 event_id;
276 bool db_enabled;
277 } its_vmovi_cmd;
Marc Zyngier3171a472016-12-20 15:17:28 +0000278
279 struct {
280 struct its_vpe *vpe;
281 struct its_collection *col;
282 u16 seq_num;
283 u16 its_list;
284 } its_vmovp_cmd;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000285 };
286};
287
288/*
289 * The ITS command block, which is what the ITS actually parses.
290 */
291struct its_cmd_block {
292 u64 raw_cmd[4];
293};
294
295#define ITS_CMD_QUEUE_SZ SZ_64K
296#define ITS_CMD_QUEUE_NR_ENTRIES (ITS_CMD_QUEUE_SZ / sizeof(struct its_cmd_block))
297
Marc Zyngier67047f902017-07-28 21:16:58 +0100298typedef struct its_collection *(*its_cmd_builder_t)(struct its_node *,
299 struct its_cmd_block *,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000300 struct its_cmd_desc *);
301
Marc Zyngier67047f902017-07-28 21:16:58 +0100302typedef struct its_vpe *(*its_cmd_vbuilder_t)(struct its_node *,
303 struct its_cmd_block *,
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000304 struct its_cmd_desc *);
305
Marc Zyngier4d36f132016-12-19 17:11:52 +0000306static void its_mask_encode(u64 *raw_cmd, u64 val, int h, int l)
307{
308 u64 mask = GENMASK_ULL(h, l);
309 *raw_cmd &= ~mask;
310 *raw_cmd |= (val << l) & mask;
311}
312
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000313static void its_encode_cmd(struct its_cmd_block *cmd, u8 cmd_nr)
314{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000315 its_mask_encode(&cmd->raw_cmd[0], cmd_nr, 7, 0);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000316}
317
318static void its_encode_devid(struct its_cmd_block *cmd, u32 devid)
319{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000320 its_mask_encode(&cmd->raw_cmd[0], devid, 63, 32);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000321}
322
323static void its_encode_event_id(struct its_cmd_block *cmd, u32 id)
324{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000325 its_mask_encode(&cmd->raw_cmd[1], id, 31, 0);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000326}
327
328static void its_encode_phys_id(struct its_cmd_block *cmd, u32 phys_id)
329{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000330 its_mask_encode(&cmd->raw_cmd[1], phys_id, 63, 32);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000331}
332
333static void its_encode_size(struct its_cmd_block *cmd, u8 size)
334{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000335 its_mask_encode(&cmd->raw_cmd[1], size, 4, 0);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000336}
337
338static void its_encode_itt(struct its_cmd_block *cmd, u64 itt_addr)
339{
Shanker Donthineni30ae9612017-10-09 11:46:55 -0500340 its_mask_encode(&cmd->raw_cmd[2], itt_addr >> 8, 51, 8);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000341}
342
343static void its_encode_valid(struct its_cmd_block *cmd, int valid)
344{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000345 its_mask_encode(&cmd->raw_cmd[2], !!valid, 63, 63);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000346}
347
348static void its_encode_target(struct its_cmd_block *cmd, u64 target_addr)
349{
Shanker Donthineni30ae9612017-10-09 11:46:55 -0500350 its_mask_encode(&cmd->raw_cmd[2], target_addr >> 16, 51, 16);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000351}
352
353static void its_encode_collection(struct its_cmd_block *cmd, u16 col)
354{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000355 its_mask_encode(&cmd->raw_cmd[2], col, 15, 0);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000356}
357
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000358static void its_encode_vpeid(struct its_cmd_block *cmd, u16 vpeid)
359{
360 its_mask_encode(&cmd->raw_cmd[1], vpeid, 47, 32);
361}
362
363static void its_encode_virt_id(struct its_cmd_block *cmd, u32 virt_id)
364{
365 its_mask_encode(&cmd->raw_cmd[2], virt_id, 31, 0);
366}
367
368static void its_encode_db_phys_id(struct its_cmd_block *cmd, u32 db_phys_id)
369{
370 its_mask_encode(&cmd->raw_cmd[2], db_phys_id, 63, 32);
371}
372
373static void its_encode_db_valid(struct its_cmd_block *cmd, bool db_valid)
374{
375 its_mask_encode(&cmd->raw_cmd[2], db_valid, 0, 0);
376}
377
Marc Zyngier3171a472016-12-20 15:17:28 +0000378static void its_encode_seq_num(struct its_cmd_block *cmd, u16 seq_num)
379{
380 its_mask_encode(&cmd->raw_cmd[0], seq_num, 47, 32);
381}
382
383static void its_encode_its_list(struct its_cmd_block *cmd, u16 its_list)
384{
385 its_mask_encode(&cmd->raw_cmd[1], its_list, 15, 0);
386}
387
Marc Zyngiereb781922016-12-20 14:47:05 +0000388static void its_encode_vpt_addr(struct its_cmd_block *cmd, u64 vpt_pa)
389{
Shanker Donthineni30ae9612017-10-09 11:46:55 -0500390 its_mask_encode(&cmd->raw_cmd[3], vpt_pa >> 16, 51, 16);
Marc Zyngiereb781922016-12-20 14:47:05 +0000391}
392
393static void its_encode_vpt_size(struct its_cmd_block *cmd, u8 vpt_size)
394{
395 its_mask_encode(&cmd->raw_cmd[3], vpt_size, 4, 0);
396}
397
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000398static inline void its_fixup_cmd(struct its_cmd_block *cmd)
399{
400 /* Let's fixup BE commands */
401 cmd->raw_cmd[0] = cpu_to_le64(cmd->raw_cmd[0]);
402 cmd->raw_cmd[1] = cpu_to_le64(cmd->raw_cmd[1]);
403 cmd->raw_cmd[2] = cpu_to_le64(cmd->raw_cmd[2]);
404 cmd->raw_cmd[3] = cpu_to_le64(cmd->raw_cmd[3]);
405}
406
Marc Zyngier67047f902017-07-28 21:16:58 +0100407static struct its_collection *its_build_mapd_cmd(struct its_node *its,
408 struct its_cmd_block *cmd,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000409 struct its_cmd_desc *desc)
410{
411 unsigned long itt_addr;
Marc Zyngierc8481262014-12-12 10:51:24 +0000412 u8 size = ilog2(desc->its_mapd_cmd.dev->nr_ites);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000413
414 itt_addr = virt_to_phys(desc->its_mapd_cmd.dev->itt);
415 itt_addr = ALIGN(itt_addr, ITS_ITT_ALIGN);
416
417 its_encode_cmd(cmd, GITS_CMD_MAPD);
418 its_encode_devid(cmd, desc->its_mapd_cmd.dev->device_id);
419 its_encode_size(cmd, size - 1);
420 its_encode_itt(cmd, itt_addr);
421 its_encode_valid(cmd, desc->its_mapd_cmd.valid);
422
423 its_fixup_cmd(cmd);
424
Marc Zyngier591e5be2015-07-17 10:46:42 +0100425 return NULL;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000426}
427
Marc Zyngier67047f902017-07-28 21:16:58 +0100428static struct its_collection *its_build_mapc_cmd(struct its_node *its,
429 struct its_cmd_block *cmd,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000430 struct its_cmd_desc *desc)
431{
432 its_encode_cmd(cmd, GITS_CMD_MAPC);
433 its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id);
434 its_encode_target(cmd, desc->its_mapc_cmd.col->target_address);
435 its_encode_valid(cmd, desc->its_mapc_cmd.valid);
436
437 its_fixup_cmd(cmd);
438
439 return desc->its_mapc_cmd.col;
440}
441
Marc Zyngier67047f902017-07-28 21:16:58 +0100442static struct its_collection *its_build_mapti_cmd(struct its_node *its,
443 struct its_cmd_block *cmd,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000444 struct its_cmd_desc *desc)
445{
Marc Zyngier591e5be2015-07-17 10:46:42 +0100446 struct its_collection *col;
447
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000448 col = dev_event_to_col(desc->its_mapti_cmd.dev,
449 desc->its_mapti_cmd.event_id);
Marc Zyngier591e5be2015-07-17 10:46:42 +0100450
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000451 its_encode_cmd(cmd, GITS_CMD_MAPTI);
452 its_encode_devid(cmd, desc->its_mapti_cmd.dev->device_id);
453 its_encode_event_id(cmd, desc->its_mapti_cmd.event_id);
454 its_encode_phys_id(cmd, desc->its_mapti_cmd.phys_id);
Marc Zyngier591e5be2015-07-17 10:46:42 +0100455 its_encode_collection(cmd, col->col_id);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000456
457 its_fixup_cmd(cmd);
458
Marc Zyngier83559b42018-06-22 10:52:52 +0100459 return valid_col(col);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000460}
461
Marc Zyngier67047f902017-07-28 21:16:58 +0100462static struct its_collection *its_build_movi_cmd(struct its_node *its,
463 struct its_cmd_block *cmd,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000464 struct its_cmd_desc *desc)
465{
Marc Zyngier591e5be2015-07-17 10:46:42 +0100466 struct its_collection *col;
467
468 col = dev_event_to_col(desc->its_movi_cmd.dev,
469 desc->its_movi_cmd.event_id);
470
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000471 its_encode_cmd(cmd, GITS_CMD_MOVI);
472 its_encode_devid(cmd, desc->its_movi_cmd.dev->device_id);
Marc Zyngier591e5be2015-07-17 10:46:42 +0100473 its_encode_event_id(cmd, desc->its_movi_cmd.event_id);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000474 its_encode_collection(cmd, desc->its_movi_cmd.col->col_id);
475
476 its_fixup_cmd(cmd);
477
Marc Zyngier83559b42018-06-22 10:52:52 +0100478 return valid_col(col);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000479}
480
Marc Zyngier67047f902017-07-28 21:16:58 +0100481static struct its_collection *its_build_discard_cmd(struct its_node *its,
482 struct its_cmd_block *cmd,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000483 struct its_cmd_desc *desc)
484{
Marc Zyngier591e5be2015-07-17 10:46:42 +0100485 struct its_collection *col;
486
487 col = dev_event_to_col(desc->its_discard_cmd.dev,
488 desc->its_discard_cmd.event_id);
489
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000490 its_encode_cmd(cmd, GITS_CMD_DISCARD);
491 its_encode_devid(cmd, desc->its_discard_cmd.dev->device_id);
492 its_encode_event_id(cmd, desc->its_discard_cmd.event_id);
493
494 its_fixup_cmd(cmd);
495
Marc Zyngier83559b42018-06-22 10:52:52 +0100496 return valid_col(col);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000497}
498
Marc Zyngier67047f902017-07-28 21:16:58 +0100499static struct its_collection *its_build_inv_cmd(struct its_node *its,
500 struct its_cmd_block *cmd,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000501 struct its_cmd_desc *desc)
502{
Marc Zyngier591e5be2015-07-17 10:46:42 +0100503 struct its_collection *col;
504
505 col = dev_event_to_col(desc->its_inv_cmd.dev,
506 desc->its_inv_cmd.event_id);
507
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000508 its_encode_cmd(cmd, GITS_CMD_INV);
509 its_encode_devid(cmd, desc->its_inv_cmd.dev->device_id);
510 its_encode_event_id(cmd, desc->its_inv_cmd.event_id);
511
512 its_fixup_cmd(cmd);
513
Marc Zyngier83559b42018-06-22 10:52:52 +0100514 return valid_col(col);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000515}
516
Marc Zyngier67047f902017-07-28 21:16:58 +0100517static struct its_collection *its_build_int_cmd(struct its_node *its,
518 struct its_cmd_block *cmd,
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000519 struct its_cmd_desc *desc)
520{
521 struct its_collection *col;
522
523 col = dev_event_to_col(desc->its_int_cmd.dev,
524 desc->its_int_cmd.event_id);
525
526 its_encode_cmd(cmd, GITS_CMD_INT);
527 its_encode_devid(cmd, desc->its_int_cmd.dev->device_id);
528 its_encode_event_id(cmd, desc->its_int_cmd.event_id);
529
530 its_fixup_cmd(cmd);
531
Marc Zyngier83559b42018-06-22 10:52:52 +0100532 return valid_col(col);
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000533}
534
Marc Zyngier67047f902017-07-28 21:16:58 +0100535static struct its_collection *its_build_clear_cmd(struct its_node *its,
536 struct its_cmd_block *cmd,
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000537 struct its_cmd_desc *desc)
538{
539 struct its_collection *col;
540
541 col = dev_event_to_col(desc->its_clear_cmd.dev,
542 desc->its_clear_cmd.event_id);
543
544 its_encode_cmd(cmd, GITS_CMD_CLEAR);
545 its_encode_devid(cmd, desc->its_clear_cmd.dev->device_id);
546 its_encode_event_id(cmd, desc->its_clear_cmd.event_id);
547
548 its_fixup_cmd(cmd);
549
Marc Zyngier83559b42018-06-22 10:52:52 +0100550 return valid_col(col);
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000551}
552
Marc Zyngier67047f902017-07-28 21:16:58 +0100553static struct its_collection *its_build_invall_cmd(struct its_node *its,
554 struct its_cmd_block *cmd,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000555 struct its_cmd_desc *desc)
556{
557 its_encode_cmd(cmd, GITS_CMD_INVALL);
558 its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id);
559
560 its_fixup_cmd(cmd);
561
562 return NULL;
563}
564
Marc Zyngier67047f902017-07-28 21:16:58 +0100565static struct its_vpe *its_build_vinvall_cmd(struct its_node *its,
566 struct its_cmd_block *cmd,
Marc Zyngiereb781922016-12-20 14:47:05 +0000567 struct its_cmd_desc *desc)
568{
569 its_encode_cmd(cmd, GITS_CMD_VINVALL);
570 its_encode_vpeid(cmd, desc->its_vinvall_cmd.vpe->vpe_id);
571
572 its_fixup_cmd(cmd);
573
Marc Zyngier205e0652018-06-22 10:52:53 +0100574 return valid_vpe(its, desc->its_vinvall_cmd.vpe);
Marc Zyngiereb781922016-12-20 14:47:05 +0000575}
576
Marc Zyngier67047f902017-07-28 21:16:58 +0100577static struct its_vpe *its_build_vmapp_cmd(struct its_node *its,
578 struct its_cmd_block *cmd,
Marc Zyngiereb781922016-12-20 14:47:05 +0000579 struct its_cmd_desc *desc)
580{
581 unsigned long vpt_addr;
Marc Zyngier5c9a8822017-07-28 21:20:37 +0100582 u64 target;
Marc Zyngiereb781922016-12-20 14:47:05 +0000583
584 vpt_addr = virt_to_phys(page_address(desc->its_vmapp_cmd.vpe->vpt_page));
Marc Zyngier5c9a8822017-07-28 21:20:37 +0100585 target = desc->its_vmapp_cmd.col->target_address + its->vlpi_redist_offset;
Marc Zyngiereb781922016-12-20 14:47:05 +0000586
587 its_encode_cmd(cmd, GITS_CMD_VMAPP);
588 its_encode_vpeid(cmd, desc->its_vmapp_cmd.vpe->vpe_id);
589 its_encode_valid(cmd, desc->its_vmapp_cmd.valid);
Marc Zyngier5c9a8822017-07-28 21:20:37 +0100590 its_encode_target(cmd, target);
Marc Zyngiereb781922016-12-20 14:47:05 +0000591 its_encode_vpt_addr(cmd, vpt_addr);
592 its_encode_vpt_size(cmd, LPI_NRBITS - 1);
593
594 its_fixup_cmd(cmd);
595
Marc Zyngier205e0652018-06-22 10:52:53 +0100596 return valid_vpe(its, desc->its_vmapp_cmd.vpe);
Marc Zyngiereb781922016-12-20 14:47:05 +0000597}
598
Marc Zyngier67047f902017-07-28 21:16:58 +0100599static struct its_vpe *its_build_vmapti_cmd(struct its_node *its,
600 struct its_cmd_block *cmd,
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000601 struct its_cmd_desc *desc)
602{
603 u32 db;
604
605 if (desc->its_vmapti_cmd.db_enabled)
606 db = desc->its_vmapti_cmd.vpe->vpe_db_lpi;
607 else
608 db = 1023;
609
610 its_encode_cmd(cmd, GITS_CMD_VMAPTI);
611 its_encode_devid(cmd, desc->its_vmapti_cmd.dev->device_id);
612 its_encode_vpeid(cmd, desc->its_vmapti_cmd.vpe->vpe_id);
613 its_encode_event_id(cmd, desc->its_vmapti_cmd.event_id);
614 its_encode_db_phys_id(cmd, db);
615 its_encode_virt_id(cmd, desc->its_vmapti_cmd.virt_id);
616
617 its_fixup_cmd(cmd);
618
Marc Zyngier205e0652018-06-22 10:52:53 +0100619 return valid_vpe(its, desc->its_vmapti_cmd.vpe);
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000620}
621
Marc Zyngier67047f902017-07-28 21:16:58 +0100622static struct its_vpe *its_build_vmovi_cmd(struct its_node *its,
623 struct its_cmd_block *cmd,
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000624 struct its_cmd_desc *desc)
625{
626 u32 db;
627
628 if (desc->its_vmovi_cmd.db_enabled)
629 db = desc->its_vmovi_cmd.vpe->vpe_db_lpi;
630 else
631 db = 1023;
632
633 its_encode_cmd(cmd, GITS_CMD_VMOVI);
634 its_encode_devid(cmd, desc->its_vmovi_cmd.dev->device_id);
635 its_encode_vpeid(cmd, desc->its_vmovi_cmd.vpe->vpe_id);
636 its_encode_event_id(cmd, desc->its_vmovi_cmd.event_id);
637 its_encode_db_phys_id(cmd, db);
638 its_encode_db_valid(cmd, true);
639
640 its_fixup_cmd(cmd);
641
Marc Zyngier205e0652018-06-22 10:52:53 +0100642 return valid_vpe(its, desc->its_vmovi_cmd.vpe);
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000643}
644
Marc Zyngier67047f902017-07-28 21:16:58 +0100645static struct its_vpe *its_build_vmovp_cmd(struct its_node *its,
646 struct its_cmd_block *cmd,
Marc Zyngier3171a472016-12-20 15:17:28 +0000647 struct its_cmd_desc *desc)
648{
Marc Zyngier5c9a8822017-07-28 21:20:37 +0100649 u64 target;
650
651 target = desc->its_vmovp_cmd.col->target_address + its->vlpi_redist_offset;
Marc Zyngier3171a472016-12-20 15:17:28 +0000652 its_encode_cmd(cmd, GITS_CMD_VMOVP);
653 its_encode_seq_num(cmd, desc->its_vmovp_cmd.seq_num);
654 its_encode_its_list(cmd, desc->its_vmovp_cmd.its_list);
655 its_encode_vpeid(cmd, desc->its_vmovp_cmd.vpe->vpe_id);
Marc Zyngier5c9a8822017-07-28 21:20:37 +0100656 its_encode_target(cmd, target);
Marc Zyngier3171a472016-12-20 15:17:28 +0000657
658 its_fixup_cmd(cmd);
659
Marc Zyngier205e0652018-06-22 10:52:53 +0100660 return valid_vpe(its, desc->its_vmovp_cmd.vpe);
Marc Zyngier3171a472016-12-20 15:17:28 +0000661}
662
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000663static u64 its_cmd_ptr_to_offset(struct its_node *its,
664 struct its_cmd_block *ptr)
665{
666 return (ptr - its->cmd_base) * sizeof(*ptr);
667}
668
669static int its_queue_full(struct its_node *its)
670{
671 int widx;
672 int ridx;
673
674 widx = its->cmd_write - its->cmd_base;
675 ridx = readl_relaxed(its->base + GITS_CREADR) / sizeof(struct its_cmd_block);
676
677 /* This is incredibly unlikely to happen, unless the ITS locks up. */
678 if (((widx + 1) % ITS_CMD_QUEUE_NR_ENTRIES) == ridx)
679 return 1;
680
681 return 0;
682}
683
684static struct its_cmd_block *its_allocate_entry(struct its_node *its)
685{
686 struct its_cmd_block *cmd;
687 u32 count = 1000000; /* 1s! */
688
689 while (its_queue_full(its)) {
690 count--;
691 if (!count) {
692 pr_err_ratelimited("ITS queue not draining\n");
693 return NULL;
694 }
695 cpu_relax();
696 udelay(1);
697 }
698
699 cmd = its->cmd_write++;
700
701 /* Handle queue wrapping */
702 if (its->cmd_write == (its->cmd_base + ITS_CMD_QUEUE_NR_ENTRIES))
703 its->cmd_write = its->cmd_base;
704
Marc Zyngier34d677a2016-12-19 17:16:45 +0000705 /* Clear command */
706 cmd->raw_cmd[0] = 0;
707 cmd->raw_cmd[1] = 0;
708 cmd->raw_cmd[2] = 0;
709 cmd->raw_cmd[3] = 0;
710
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000711 return cmd;
712}
713
714static struct its_cmd_block *its_post_commands(struct its_node *its)
715{
716 u64 wr = its_cmd_ptr_to_offset(its, its->cmd_write);
717
718 writel_relaxed(wr, its->base + GITS_CWRITER);
719
720 return its->cmd_write;
721}
722
723static void its_flush_cmd(struct its_node *its, struct its_cmd_block *cmd)
724{
725 /*
726 * Make sure the commands written to memory are observable by
727 * the ITS.
728 */
729 if (its->flags & ITS_FLAGS_CMDQ_NEEDS_FLUSHING)
Vladimir Murzin328191c2016-11-02 11:54:05 +0000730 gic_flush_dcache_to_poc(cmd, sizeof(*cmd));
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000731 else
732 dsb(ishst);
733}
734
Marc Zyngiera19b4622017-08-04 17:45:50 +0100735static int its_wait_for_range_completion(struct its_node *its,
Heyi Guoa050fa52019-05-13 19:42:06 +0800736 u64 prev_idx,
Marc Zyngiera19b4622017-08-04 17:45:50 +0100737 struct its_cmd_block *to)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000738{
Heyi Guoa050fa52019-05-13 19:42:06 +0800739 u64 rd_idx, to_idx, linear_idx;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000740 u32 count = 1000000; /* 1s! */
741
Heyi Guoa050fa52019-05-13 19:42:06 +0800742 /* Linearize to_idx if the command set has wrapped around */
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000743 to_idx = its_cmd_ptr_to_offset(its, to);
Heyi Guoa050fa52019-05-13 19:42:06 +0800744 if (to_idx < prev_idx)
745 to_idx += ITS_CMD_QUEUE_SZ;
746
747 linear_idx = prev_idx;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000748
749 while (1) {
Heyi Guoa050fa52019-05-13 19:42:06 +0800750 s64 delta;
751
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000752 rd_idx = readl_relaxed(its->base + GITS_CREADR);
Marc Zyngier9bdd8b12017-08-19 10:16:02 +0100753
Heyi Guoa050fa52019-05-13 19:42:06 +0800754 /*
755 * Compute the read pointer progress, taking the
756 * potential wrap-around into account.
757 */
758 delta = rd_idx - prev_idx;
759 if (rd_idx < prev_idx)
760 delta += ITS_CMD_QUEUE_SZ;
Marc Zyngier9bdd8b12017-08-19 10:16:02 +0100761
Heyi Guoa050fa52019-05-13 19:42:06 +0800762 linear_idx += delta;
763 if (linear_idx >= to_idx)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000764 break;
765
766 count--;
767 if (!count) {
Heyi Guoa050fa52019-05-13 19:42:06 +0800768 pr_err_ratelimited("ITS queue timeout (%llu %llu)\n",
769 to_idx, linear_idx);
Marc Zyngiera19b4622017-08-04 17:45:50 +0100770 return -1;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000771 }
Heyi Guoa050fa52019-05-13 19:42:06 +0800772 prev_idx = rd_idx;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000773 cpu_relax();
774 udelay(1);
775 }
Marc Zyngiera19b4622017-08-04 17:45:50 +0100776
777 return 0;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000778}
779
Marc Zyngiere4f90942016-12-19 17:56:32 +0000780/* Warning, macro hell follows */
781#define BUILD_SINGLE_CMD_FUNC(name, buildtype, synctype, buildfn) \
782void name(struct its_node *its, \
783 buildtype builder, \
784 struct its_cmd_desc *desc) \
785{ \
786 struct its_cmd_block *cmd, *sync_cmd, *next_cmd; \
787 synctype *sync_obj; \
788 unsigned long flags; \
Heyi Guoa050fa52019-05-13 19:42:06 +0800789 u64 rd_idx; \
Marc Zyngiere4f90942016-12-19 17:56:32 +0000790 \
791 raw_spin_lock_irqsave(&its->lock, flags); \
792 \
793 cmd = its_allocate_entry(its); \
794 if (!cmd) { /* We're soooooo screewed... */ \
795 raw_spin_unlock_irqrestore(&its->lock, flags); \
796 return; \
797 } \
Marc Zyngier67047f902017-07-28 21:16:58 +0100798 sync_obj = builder(its, cmd, desc); \
Marc Zyngiere4f90942016-12-19 17:56:32 +0000799 its_flush_cmd(its, cmd); \
800 \
801 if (sync_obj) { \
802 sync_cmd = its_allocate_entry(its); \
803 if (!sync_cmd) \
804 goto post; \
805 \
Marc Zyngier67047f902017-07-28 21:16:58 +0100806 buildfn(its, sync_cmd, sync_obj); \
Marc Zyngiere4f90942016-12-19 17:56:32 +0000807 its_flush_cmd(its, sync_cmd); \
808 } \
809 \
810post: \
Heyi Guoa050fa52019-05-13 19:42:06 +0800811 rd_idx = readl_relaxed(its->base + GITS_CREADR); \
Marc Zyngiere4f90942016-12-19 17:56:32 +0000812 next_cmd = its_post_commands(its); \
813 raw_spin_unlock_irqrestore(&its->lock, flags); \
814 \
Heyi Guoa050fa52019-05-13 19:42:06 +0800815 if (its_wait_for_range_completion(its, rd_idx, next_cmd)) \
Marc Zyngiera19b4622017-08-04 17:45:50 +0100816 pr_err_ratelimited("ITS cmd %ps failed\n", builder); \
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000817}
818
Marc Zyngier67047f902017-07-28 21:16:58 +0100819static void its_build_sync_cmd(struct its_node *its,
820 struct its_cmd_block *sync_cmd,
Marc Zyngiere4f90942016-12-19 17:56:32 +0000821 struct its_collection *sync_col)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000822{
Marc Zyngiere4f90942016-12-19 17:56:32 +0000823 its_encode_cmd(sync_cmd, GITS_CMD_SYNC);
824 its_encode_target(sync_cmd, sync_col->target_address);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000825
Marc Zyngiere4f90942016-12-19 17:56:32 +0000826 its_fixup_cmd(sync_cmd);
827}
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000828
Marc Zyngiere4f90942016-12-19 17:56:32 +0000829static BUILD_SINGLE_CMD_FUNC(its_send_single_command, its_cmd_builder_t,
830 struct its_collection, its_build_sync_cmd)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000831
Marc Zyngier67047f902017-07-28 21:16:58 +0100832static void its_build_vsync_cmd(struct its_node *its,
833 struct its_cmd_block *sync_cmd,
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000834 struct its_vpe *sync_vpe)
835{
836 its_encode_cmd(sync_cmd, GITS_CMD_VSYNC);
837 its_encode_vpeid(sync_cmd, sync_vpe->vpe_id);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000838
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000839 its_fixup_cmd(sync_cmd);
840}
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000841
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000842static BUILD_SINGLE_CMD_FUNC(its_send_single_vcommand, its_cmd_vbuilder_t,
843 struct its_vpe, its_build_vsync_cmd)
844
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000845static void its_send_int(struct its_device *dev, u32 event_id)
846{
847 struct its_cmd_desc desc;
848
849 desc.its_int_cmd.dev = dev;
850 desc.its_int_cmd.event_id = event_id;
851
852 its_send_single_command(dev->its, its_build_int_cmd, &desc);
853}
854
855static void its_send_clear(struct its_device *dev, u32 event_id)
856{
857 struct its_cmd_desc desc;
858
859 desc.its_clear_cmd.dev = dev;
860 desc.its_clear_cmd.event_id = event_id;
861
862 its_send_single_command(dev->its, its_build_clear_cmd, &desc);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000863}
864
865static void its_send_inv(struct its_device *dev, u32 event_id)
866{
867 struct its_cmd_desc desc;
868
869 desc.its_inv_cmd.dev = dev;
870 desc.its_inv_cmd.event_id = event_id;
871
872 its_send_single_command(dev->its, its_build_inv_cmd, &desc);
873}
874
875static void its_send_mapd(struct its_device *dev, int valid)
876{
877 struct its_cmd_desc desc;
878
879 desc.its_mapd_cmd.dev = dev;
880 desc.its_mapd_cmd.valid = !!valid;
881
882 its_send_single_command(dev->its, its_build_mapd_cmd, &desc);
883}
884
885static void its_send_mapc(struct its_node *its, struct its_collection *col,
886 int valid)
887{
888 struct its_cmd_desc desc;
889
890 desc.its_mapc_cmd.col = col;
891 desc.its_mapc_cmd.valid = !!valid;
892
893 its_send_single_command(its, its_build_mapc_cmd, &desc);
894}
895
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000896static void its_send_mapti(struct its_device *dev, u32 irq_id, u32 id)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000897{
898 struct its_cmd_desc desc;
899
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000900 desc.its_mapti_cmd.dev = dev;
901 desc.its_mapti_cmd.phys_id = irq_id;
902 desc.its_mapti_cmd.event_id = id;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000903
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000904 its_send_single_command(dev->its, its_build_mapti_cmd, &desc);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000905}
906
907static void its_send_movi(struct its_device *dev,
908 struct its_collection *col, u32 id)
909{
910 struct its_cmd_desc desc;
911
912 desc.its_movi_cmd.dev = dev;
913 desc.its_movi_cmd.col = col;
Marc Zyngier591e5be2015-07-17 10:46:42 +0100914 desc.its_movi_cmd.event_id = id;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000915
916 its_send_single_command(dev->its, its_build_movi_cmd, &desc);
917}
918
919static void its_send_discard(struct its_device *dev, u32 id)
920{
921 struct its_cmd_desc desc;
922
923 desc.its_discard_cmd.dev = dev;
924 desc.its_discard_cmd.event_id = id;
925
926 its_send_single_command(dev->its, its_build_discard_cmd, &desc);
927}
928
929static void its_send_invall(struct its_node *its, struct its_collection *col)
930{
931 struct its_cmd_desc desc;
932
933 desc.its_invall_cmd.col = col;
934
935 its_send_single_command(its, its_build_invall_cmd, &desc);
936}
Marc Zyngierc48ed512014-11-24 14:35:12 +0000937
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000938static void its_send_vmapti(struct its_device *dev, u32 id)
939{
940 struct its_vlpi_map *map = &dev->event_map.vlpi_maps[id];
941 struct its_cmd_desc desc;
942
943 desc.its_vmapti_cmd.vpe = map->vpe;
944 desc.its_vmapti_cmd.dev = dev;
945 desc.its_vmapti_cmd.virt_id = map->vintid;
946 desc.its_vmapti_cmd.event_id = id;
947 desc.its_vmapti_cmd.db_enabled = map->db_enabled;
948
949 its_send_single_vcommand(dev->its, its_build_vmapti_cmd, &desc);
950}
951
952static void its_send_vmovi(struct its_device *dev, u32 id)
953{
954 struct its_vlpi_map *map = &dev->event_map.vlpi_maps[id];
955 struct its_cmd_desc desc;
956
957 desc.its_vmovi_cmd.vpe = map->vpe;
958 desc.its_vmovi_cmd.dev = dev;
959 desc.its_vmovi_cmd.event_id = id;
960 desc.its_vmovi_cmd.db_enabled = map->db_enabled;
961
962 its_send_single_vcommand(dev->its, its_build_vmovi_cmd, &desc);
963}
964
Marc Zyngier75fd9512017-10-08 18:46:39 +0100965static void its_send_vmapp(struct its_node *its,
966 struct its_vpe *vpe, bool valid)
Marc Zyngiereb781922016-12-20 14:47:05 +0000967{
968 struct its_cmd_desc desc;
Marc Zyngiereb781922016-12-20 14:47:05 +0000969
970 desc.its_vmapp_cmd.vpe = vpe;
971 desc.its_vmapp_cmd.valid = valid;
Marc Zyngier75fd9512017-10-08 18:46:39 +0100972 desc.its_vmapp_cmd.col = &its->collections[vpe->col_idx];
Marc Zyngiereb781922016-12-20 14:47:05 +0000973
Marc Zyngier75fd9512017-10-08 18:46:39 +0100974 its_send_single_vcommand(its, its_build_vmapp_cmd, &desc);
Marc Zyngiereb781922016-12-20 14:47:05 +0000975}
976
Marc Zyngier3171a472016-12-20 15:17:28 +0000977static void its_send_vmovp(struct its_vpe *vpe)
978{
979 struct its_cmd_desc desc;
980 struct its_node *its;
981 unsigned long flags;
982 int col_id = vpe->col_idx;
983
984 desc.its_vmovp_cmd.vpe = vpe;
985 desc.its_vmovp_cmd.its_list = (u16)its_list_map;
986
987 if (!its_list_map) {
988 its = list_first_entry(&its_nodes, struct its_node, entry);
989 desc.its_vmovp_cmd.seq_num = 0;
990 desc.its_vmovp_cmd.col = &its->collections[col_id];
991 its_send_single_vcommand(its, its_build_vmovp_cmd, &desc);
992 return;
993 }
994
995 /*
996 * Yet another marvel of the architecture. If using the
997 * its_list "feature", we need to make sure that all ITSs
998 * receive all VMOVP commands in the same order. The only way
999 * to guarantee this is to make vmovp a serialization point.
1000 *
1001 * Wall <-- Head.
1002 */
1003 raw_spin_lock_irqsave(&vmovp_lock, flags);
1004
1005 desc.its_vmovp_cmd.seq_num = vmovp_seq_num++;
1006
1007 /* Emit VMOVPs */
1008 list_for_each_entry(its, &its_nodes, entry) {
1009 if (!its->is_v4)
1010 continue;
1011
Marc Zyngier2247e1b2017-10-08 18:50:36 +01001012 if (!vpe->its_vm->vlpi_count[its->list_nr])
1013 continue;
1014
Marc Zyngier3171a472016-12-20 15:17:28 +00001015 desc.its_vmovp_cmd.col = &its->collections[col_id];
1016 its_send_single_vcommand(its, its_build_vmovp_cmd, &desc);
1017 }
1018
1019 raw_spin_unlock_irqrestore(&vmovp_lock, flags);
1020}
1021
Marc Zyngier40619a22017-10-08 15:16:09 +01001022static void its_send_vinvall(struct its_node *its, struct its_vpe *vpe)
Marc Zyngiereb781922016-12-20 14:47:05 +00001023{
1024 struct its_cmd_desc desc;
Marc Zyngiereb781922016-12-20 14:47:05 +00001025
1026 desc.its_vinvall_cmd.vpe = vpe;
Marc Zyngier40619a22017-10-08 15:16:09 +01001027 its_send_single_vcommand(its, its_build_vinvall_cmd, &desc);
Marc Zyngiereb781922016-12-20 14:47:05 +00001028}
1029
Marc Zyngierc48ed512014-11-24 14:35:12 +00001030/*
1031 * irqchip functions - assumes MSI, mostly.
1032 */
1033
1034static inline u32 its_get_event_id(struct irq_data *d)
1035{
1036 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
Marc Zyngier591e5be2015-07-17 10:46:42 +01001037 return d->hwirq - its_dev->event_map.lpi_base;
Marc Zyngierc48ed512014-11-24 14:35:12 +00001038}
1039
Marc Zyngier015ec032016-12-20 09:54:57 +00001040static void lpi_write_config(struct irq_data *d, u8 clr, u8 set)
Marc Zyngierc48ed512014-11-24 14:35:12 +00001041{
Marc Zyngier015ec032016-12-20 09:54:57 +00001042 irq_hw_number_t hwirq;
Marc Zyngiere1a2e202018-07-27 14:36:00 +01001043 void *va;
Marc Zyngieradcdb942016-12-19 19:18:13 +00001044 u8 *cfg;
Marc Zyngierc48ed512014-11-24 14:35:12 +00001045
Marc Zyngier015ec032016-12-20 09:54:57 +00001046 if (irqd_is_forwarded_to_vcpu(d)) {
1047 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1048 u32 event = its_get_event_id(d);
Marc Zyngierd4d7b4a2017-10-26 10:44:07 +01001049 struct its_vlpi_map *map;
Marc Zyngier015ec032016-12-20 09:54:57 +00001050
Marc Zyngiere1a2e202018-07-27 14:36:00 +01001051 va = page_address(its_dev->event_map.vm->vprop_page);
Marc Zyngierd4d7b4a2017-10-26 10:44:07 +01001052 map = &its_dev->event_map.vlpi_maps[event];
1053 hwirq = map->vintid;
1054
1055 /* Remember the updated property */
1056 map->properties &= ~clr;
1057 map->properties |= set | LPI_PROP_GROUP1;
Marc Zyngier015ec032016-12-20 09:54:57 +00001058 } else {
Marc Zyngiere1a2e202018-07-27 14:36:00 +01001059 va = gic_rdists->prop_table_va;
Marc Zyngier015ec032016-12-20 09:54:57 +00001060 hwirq = d->hwirq;
1061 }
Marc Zyngieradcdb942016-12-19 19:18:13 +00001062
Marc Zyngiere1a2e202018-07-27 14:36:00 +01001063 cfg = va + hwirq - 8192;
Marc Zyngieradcdb942016-12-19 19:18:13 +00001064 *cfg &= ~clr;
Marc Zyngier015ec032016-12-20 09:54:57 +00001065 *cfg |= set | LPI_PROP_GROUP1;
Marc Zyngierc48ed512014-11-24 14:35:12 +00001066
1067 /*
1068 * Make the above write visible to the redistributors.
1069 * And yes, we're flushing exactly: One. Single. Byte.
1070 * Humpf...
1071 */
1072 if (gic_rdists->flags & RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING)
Vladimir Murzin328191c2016-11-02 11:54:05 +00001073 gic_flush_dcache_to_poc(cfg, sizeof(*cfg));
Marc Zyngierc48ed512014-11-24 14:35:12 +00001074 else
1075 dsb(ishst);
Marc Zyngier015ec032016-12-20 09:54:57 +00001076}
1077
1078static void lpi_update_config(struct irq_data *d, u8 clr, u8 set)
1079{
1080 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1081
1082 lpi_write_config(d, clr, set);
Marc Zyngieradcdb942016-12-19 19:18:13 +00001083 its_send_inv(its_dev, its_get_event_id(d));
Marc Zyngierc48ed512014-11-24 14:35:12 +00001084}
1085
Marc Zyngier015ec032016-12-20 09:54:57 +00001086static void its_vlpi_set_doorbell(struct irq_data *d, bool enable)
1087{
1088 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1089 u32 event = its_get_event_id(d);
1090
1091 if (its_dev->event_map.vlpi_maps[event].db_enabled == enable)
1092 return;
1093
1094 its_dev->event_map.vlpi_maps[event].db_enabled = enable;
1095
1096 /*
1097 * More fun with the architecture:
1098 *
1099 * Ideally, we'd issue a VMAPTI to set the doorbell to its LPI
1100 * value or to 1023, depending on the enable bit. But that
1101 * would be issueing a mapping for an /existing/ DevID+EventID
1102 * pair, which is UNPREDICTABLE. Instead, let's issue a VMOVI
1103 * to the /same/ vPE, using this opportunity to adjust the
1104 * doorbell. Mouahahahaha. We loves it, Precious.
1105 */
1106 its_send_vmovi(its_dev, event);
Marc Zyngierc48ed512014-11-24 14:35:12 +00001107}
1108
1109static void its_mask_irq(struct irq_data *d)
1110{
Marc Zyngier015ec032016-12-20 09:54:57 +00001111 if (irqd_is_forwarded_to_vcpu(d))
1112 its_vlpi_set_doorbell(d, false);
1113
Marc Zyngieradcdb942016-12-19 19:18:13 +00001114 lpi_update_config(d, LPI_PROP_ENABLED, 0);
Marc Zyngierc48ed512014-11-24 14:35:12 +00001115}
1116
1117static void its_unmask_irq(struct irq_data *d)
1118{
Marc Zyngier015ec032016-12-20 09:54:57 +00001119 if (irqd_is_forwarded_to_vcpu(d))
1120 its_vlpi_set_doorbell(d, true);
1121
Marc Zyngieradcdb942016-12-19 19:18:13 +00001122 lpi_update_config(d, 0, LPI_PROP_ENABLED);
Marc Zyngierc48ed512014-11-24 14:35:12 +00001123}
1124
Marc Zyngierc48ed512014-11-24 14:35:12 +00001125static int its_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
1126 bool force)
1127{
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02001128 unsigned int cpu;
1129 const struct cpumask *cpu_mask = cpu_online_mask;
Marc Zyngierc48ed512014-11-24 14:35:12 +00001130 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1131 struct its_collection *target_col;
1132 u32 id = its_get_event_id(d);
1133
Marc Zyngier015ec032016-12-20 09:54:57 +00001134 /* A forwarded interrupt should use irq_set_vcpu_affinity */
1135 if (irqd_is_forwarded_to_vcpu(d))
1136 return -EINVAL;
1137
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02001138 /* lpi cannot be routed to a redistributor that is on a foreign node */
1139 if (its_dev->its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144) {
1140 if (its_dev->its->numa_node >= 0) {
1141 cpu_mask = cpumask_of_node(its_dev->its->numa_node);
1142 if (!cpumask_intersects(mask_val, cpu_mask))
1143 return -EINVAL;
1144 }
1145 }
1146
1147 cpu = cpumask_any_and(mask_val, cpu_mask);
1148
Marc Zyngierc48ed512014-11-24 14:35:12 +00001149 if (cpu >= nr_cpu_ids)
1150 return -EINVAL;
1151
MaJun8b8d94a2017-05-18 16:19:13 +08001152 /* don't set the affinity when the target cpu is same as current one */
1153 if (cpu != its_dev->event_map.col_map[id]) {
1154 target_col = &its_dev->its->collections[cpu];
1155 its_send_movi(its_dev, target_col, id);
1156 its_dev->event_map.col_map[id] = cpu;
Marc Zyngier0d224d32017-08-18 09:39:18 +01001157 irq_data_update_effective_affinity(d, cpumask_of(cpu));
MaJun8b8d94a2017-05-18 16:19:13 +08001158 }
Marc Zyngierc48ed512014-11-24 14:35:12 +00001159
1160 return IRQ_SET_MASK_OK_DONE;
1161}
1162
Ard Biesheuvel558b0162017-10-17 17:55:56 +01001163static u64 its_irq_get_msi_base(struct its_device *its_dev)
1164{
1165 struct its_node *its = its_dev->its;
1166
1167 return its->phys_base + GITS_TRANSLATER;
1168}
1169
Marc Zyngierb48ac832014-11-24 14:35:16 +00001170static void its_irq_compose_msi_msg(struct irq_data *d, struct msi_msg *msg)
1171{
1172 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1173 struct its_node *its;
1174 u64 addr;
1175
1176 its = its_dev->its;
Ard Biesheuvel558b0162017-10-17 17:55:56 +01001177 addr = its->get_msi_base(its_dev);
Marc Zyngierb48ac832014-11-24 14:35:16 +00001178
Vladimir Murzinb11283e2016-11-02 11:54:03 +00001179 msg->address_lo = lower_32_bits(addr);
1180 msg->address_hi = upper_32_bits(addr);
Marc Zyngierb48ac832014-11-24 14:35:16 +00001181 msg->data = its_get_event_id(d);
Robin Murphy44bb7e22016-09-12 17:13:59 +01001182
Julien Grall35ae7df2019-05-01 14:58:21 +01001183 iommu_dma_compose_msi_msg(irq_data_get_msi_desc(d), msg);
Marc Zyngierb48ac832014-11-24 14:35:16 +00001184}
1185
Marc Zyngier8d85dce2016-12-19 18:02:13 +00001186static int its_irq_set_irqchip_state(struct irq_data *d,
1187 enum irqchip_irq_state which,
1188 bool state)
1189{
1190 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1191 u32 event = its_get_event_id(d);
1192
1193 if (which != IRQCHIP_STATE_PENDING)
1194 return -EINVAL;
1195
1196 if (state)
1197 its_send_int(its_dev, event);
1198 else
1199 its_send_clear(its_dev, event);
1200
1201 return 0;
1202}
1203
Marc Zyngier2247e1b2017-10-08 18:50:36 +01001204static void its_map_vm(struct its_node *its, struct its_vm *vm)
1205{
1206 unsigned long flags;
1207
1208 /* Not using the ITS list? Everything is always mapped. */
1209 if (!its_list_map)
1210 return;
1211
1212 raw_spin_lock_irqsave(&vmovp_lock, flags);
1213
1214 /*
1215 * If the VM wasn't mapped yet, iterate over the vpes and get
1216 * them mapped now.
1217 */
1218 vm->vlpi_count[its->list_nr]++;
1219
1220 if (vm->vlpi_count[its->list_nr] == 1) {
1221 int i;
1222
1223 for (i = 0; i < vm->nr_vpes; i++) {
1224 struct its_vpe *vpe = vm->vpes[i];
Marc Zyngier44c4c252017-10-19 10:11:34 +01001225 struct irq_data *d = irq_get_irq_data(vpe->irq);
Marc Zyngier2247e1b2017-10-08 18:50:36 +01001226
1227 /* Map the VPE to the first possible CPU */
1228 vpe->col_idx = cpumask_first(cpu_online_mask);
1229 its_send_vmapp(its, vpe, true);
1230 its_send_vinvall(its, vpe);
Marc Zyngier44c4c252017-10-19 10:11:34 +01001231 irq_data_update_effective_affinity(d, cpumask_of(vpe->col_idx));
Marc Zyngier2247e1b2017-10-08 18:50:36 +01001232 }
1233 }
1234
1235 raw_spin_unlock_irqrestore(&vmovp_lock, flags);
1236}
1237
1238static void its_unmap_vm(struct its_node *its, struct its_vm *vm)
1239{
1240 unsigned long flags;
1241
1242 /* Not using the ITS list? Everything is always mapped. */
1243 if (!its_list_map)
1244 return;
1245
1246 raw_spin_lock_irqsave(&vmovp_lock, flags);
1247
1248 if (!--vm->vlpi_count[its->list_nr]) {
1249 int i;
1250
1251 for (i = 0; i < vm->nr_vpes; i++)
1252 its_send_vmapp(its, vm->vpes[i], false);
1253 }
1254
1255 raw_spin_unlock_irqrestore(&vmovp_lock, flags);
1256}
1257
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001258static int its_vlpi_map(struct irq_data *d, struct its_cmd_info *info)
1259{
1260 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1261 u32 event = its_get_event_id(d);
1262 int ret = 0;
1263
1264 if (!info->map)
1265 return -EINVAL;
1266
1267 mutex_lock(&its_dev->event_map.vlpi_lock);
1268
1269 if (!its_dev->event_map.vm) {
1270 struct its_vlpi_map *maps;
1271
Kees Cook6396bb22018-06-12 14:03:40 -07001272 maps = kcalloc(its_dev->event_map.nr_lpis, sizeof(*maps),
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001273 GFP_KERNEL);
1274 if (!maps) {
1275 ret = -ENOMEM;
1276 goto out;
1277 }
1278
1279 its_dev->event_map.vm = info->map->vm;
1280 its_dev->event_map.vlpi_maps = maps;
1281 } else if (its_dev->event_map.vm != info->map->vm) {
1282 ret = -EINVAL;
1283 goto out;
1284 }
1285
1286 /* Get our private copy of the mapping information */
1287 its_dev->event_map.vlpi_maps[event] = *info->map;
1288
1289 if (irqd_is_forwarded_to_vcpu(d)) {
1290 /* Already mapped, move it around */
1291 its_send_vmovi(its_dev, event);
1292 } else {
Marc Zyngier2247e1b2017-10-08 18:50:36 +01001293 /* Ensure all the VPEs are mapped on this ITS */
1294 its_map_vm(its_dev->its, info->map->vm);
1295
Marc Zyngierd4d7b4a2017-10-26 10:44:07 +01001296 /*
1297 * Flag the interrupt as forwarded so that we can
1298 * start poking the virtual property table.
1299 */
1300 irqd_set_forwarded_to_vcpu(d);
1301
1302 /* Write out the property to the prop table */
1303 lpi_write_config(d, 0xff, info->map->properties);
1304
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001305 /* Drop the physical mapping */
1306 its_send_discard(its_dev, event);
1307
1308 /* and install the virtual one */
1309 its_send_vmapti(its_dev, event);
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001310
1311 /* Increment the number of VLPIs */
1312 its_dev->event_map.nr_vlpis++;
1313 }
1314
1315out:
1316 mutex_unlock(&its_dev->event_map.vlpi_lock);
1317 return ret;
1318}
1319
1320static int its_vlpi_get(struct irq_data *d, struct its_cmd_info *info)
1321{
1322 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1323 u32 event = its_get_event_id(d);
1324 int ret = 0;
1325
1326 mutex_lock(&its_dev->event_map.vlpi_lock);
1327
1328 if (!its_dev->event_map.vm ||
1329 !its_dev->event_map.vlpi_maps[event].vm) {
1330 ret = -EINVAL;
1331 goto out;
1332 }
1333
1334 /* Copy our mapping information to the incoming request */
1335 *info->map = its_dev->event_map.vlpi_maps[event];
1336
1337out:
1338 mutex_unlock(&its_dev->event_map.vlpi_lock);
1339 return ret;
1340}
1341
1342static int its_vlpi_unmap(struct irq_data *d)
1343{
1344 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1345 u32 event = its_get_event_id(d);
1346 int ret = 0;
1347
1348 mutex_lock(&its_dev->event_map.vlpi_lock);
1349
1350 if (!its_dev->event_map.vm || !irqd_is_forwarded_to_vcpu(d)) {
1351 ret = -EINVAL;
1352 goto out;
1353 }
1354
1355 /* Drop the virtual mapping */
1356 its_send_discard(its_dev, event);
1357
1358 /* and restore the physical one */
1359 irqd_clr_forwarded_to_vcpu(d);
1360 its_send_mapti(its_dev, d->hwirq, event);
1361 lpi_update_config(d, 0xff, (LPI_PROP_DEFAULT_PRIO |
1362 LPI_PROP_ENABLED |
1363 LPI_PROP_GROUP1));
1364
Marc Zyngier2247e1b2017-10-08 18:50:36 +01001365 /* Potentially unmap the VM from this ITS */
1366 its_unmap_vm(its_dev->its, its_dev->event_map.vm);
1367
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001368 /*
1369 * Drop the refcount and make the device available again if
1370 * this was the last VLPI.
1371 */
1372 if (!--its_dev->event_map.nr_vlpis) {
1373 its_dev->event_map.vm = NULL;
1374 kfree(its_dev->event_map.vlpi_maps);
1375 }
1376
1377out:
1378 mutex_unlock(&its_dev->event_map.vlpi_lock);
1379 return ret;
1380}
1381
Marc Zyngier015ec032016-12-20 09:54:57 +00001382static int its_vlpi_prop_update(struct irq_data *d, struct its_cmd_info *info)
1383{
1384 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1385
1386 if (!its_dev->event_map.vm || !irqd_is_forwarded_to_vcpu(d))
1387 return -EINVAL;
1388
1389 if (info->cmd_type == PROP_UPDATE_AND_INV_VLPI)
1390 lpi_update_config(d, 0xff, info->config);
1391 else
1392 lpi_write_config(d, 0xff, info->config);
1393 its_vlpi_set_doorbell(d, !!(info->config & LPI_PROP_ENABLED));
1394
1395 return 0;
1396}
1397
Marc Zyngierc808eea2016-12-20 09:31:20 +00001398static int its_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu_info)
1399{
1400 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1401 struct its_cmd_info *info = vcpu_info;
1402
1403 /* Need a v4 ITS */
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001404 if (!its_dev->its->is_v4)
Marc Zyngierc808eea2016-12-20 09:31:20 +00001405 return -EINVAL;
1406
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001407 /* Unmap request? */
1408 if (!info)
1409 return its_vlpi_unmap(d);
1410
Marc Zyngierc808eea2016-12-20 09:31:20 +00001411 switch (info->cmd_type) {
1412 case MAP_VLPI:
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001413 return its_vlpi_map(d, info);
Marc Zyngierc808eea2016-12-20 09:31:20 +00001414
1415 case GET_VLPI:
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001416 return its_vlpi_get(d, info);
Marc Zyngierc808eea2016-12-20 09:31:20 +00001417
1418 case PROP_UPDATE_VLPI:
1419 case PROP_UPDATE_AND_INV_VLPI:
Marc Zyngier015ec032016-12-20 09:54:57 +00001420 return its_vlpi_prop_update(d, info);
Marc Zyngierc808eea2016-12-20 09:31:20 +00001421
1422 default:
1423 return -EINVAL;
1424 }
1425}
1426
Marc Zyngierc48ed512014-11-24 14:35:12 +00001427static struct irq_chip its_irq_chip = {
1428 .name = "ITS",
1429 .irq_mask = its_mask_irq,
1430 .irq_unmask = its_unmask_irq,
Ashok Kumar004fa082016-02-11 05:38:53 -08001431 .irq_eoi = irq_chip_eoi_parent,
Marc Zyngierc48ed512014-11-24 14:35:12 +00001432 .irq_set_affinity = its_set_affinity,
Marc Zyngierb48ac832014-11-24 14:35:16 +00001433 .irq_compose_msi_msg = its_irq_compose_msi_msg,
Marc Zyngier8d85dce2016-12-19 18:02:13 +00001434 .irq_set_irqchip_state = its_irq_set_irqchip_state,
Marc Zyngierc808eea2016-12-20 09:31:20 +00001435 .irq_set_vcpu_affinity = its_irq_set_vcpu_affinity,
Marc Zyngierb48ac832014-11-24 14:35:16 +00001436};
1437
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001438
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001439/*
1440 * How we allocate LPIs:
1441 *
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001442 * lpi_range_list contains ranges of LPIs that are to available to
1443 * allocate from. To allocate LPIs, just pick the first range that
1444 * fits the required allocation, and reduce it by the required
1445 * amount. Once empty, remove the range from the list.
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001446 *
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001447 * To free a range of LPIs, add a free range to the list, sort it and
1448 * merge the result if the new range happens to be adjacent to an
1449 * already free block.
1450 *
1451 * The consequence of the above is that allocation is cost is low, but
1452 * freeing is expensive. We assumes that freeing rarely occurs.
1453 */
Jia He4cb205c2018-08-28 12:53:26 +08001454#define ITS_MAX_LPI_NRBITS 16 /* 64K LPIs */
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001455
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001456static DEFINE_MUTEX(lpi_range_lock);
1457static LIST_HEAD(lpi_range_list);
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001458
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001459struct lpi_range {
1460 struct list_head entry;
1461 u32 base_id;
1462 u32 span;
1463};
1464
1465static struct lpi_range *mk_lpi_range(u32 base, u32 span)
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001466{
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001467 struct lpi_range *range;
1468
Rasmus Villemoes1c73fac2019-03-12 18:33:48 +01001469 range = kmalloc(sizeof(*range), GFP_KERNEL);
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001470 if (range) {
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001471 range->base_id = base;
1472 range->span = span;
1473 }
1474
1475 return range;
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001476}
1477
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001478static int alloc_lpi_range(u32 nr_lpis, u32 *base)
1479{
1480 struct lpi_range *range, *tmp;
1481 int err = -ENOSPC;
1482
1483 mutex_lock(&lpi_range_lock);
1484
1485 list_for_each_entry_safe(range, tmp, &lpi_range_list, entry) {
1486 if (range->span >= nr_lpis) {
1487 *base = range->base_id;
1488 range->base_id += nr_lpis;
1489 range->span -= nr_lpis;
1490
1491 if (range->span == 0) {
1492 list_del(&range->entry);
1493 kfree(range);
1494 }
1495
1496 err = 0;
1497 break;
1498 }
1499 }
1500
1501 mutex_unlock(&lpi_range_lock);
1502
1503 pr_debug("ITS: alloc %u:%u\n", *base, nr_lpis);
1504 return err;
1505}
1506
Rasmus Villemoes12eade12019-03-12 18:33:49 +01001507static void merge_lpi_ranges(struct lpi_range *a, struct lpi_range *b)
1508{
1509 if (&a->entry == &lpi_range_list || &b->entry == &lpi_range_list)
1510 return;
1511 if (a->base_id + a->span != b->base_id)
1512 return;
1513 b->base_id = a->base_id;
1514 b->span += a->span;
1515 list_del(&a->entry);
1516 kfree(a);
1517}
1518
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001519static int free_lpi_range(u32 base, u32 nr_lpis)
1520{
Rasmus Villemoes12eade12019-03-12 18:33:49 +01001521 struct lpi_range *new, *old;
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001522
1523 new = mk_lpi_range(base, nr_lpis);
Rasmus Villemoesb31a3832019-03-12 18:33:47 +01001524 if (!new)
1525 return -ENOMEM;
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001526
1527 mutex_lock(&lpi_range_lock);
1528
Rasmus Villemoes12eade12019-03-12 18:33:49 +01001529 list_for_each_entry_reverse(old, &lpi_range_list, entry) {
1530 if (old->base_id < base)
1531 break;
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001532 }
Rasmus Villemoes12eade12019-03-12 18:33:49 +01001533 /*
1534 * old is the last element with ->base_id smaller than base,
1535 * so new goes right after it. If there are no elements with
1536 * ->base_id smaller than base, &old->entry ends up pointing
1537 * at the head of the list, and inserting new it the start of
1538 * the list is the right thing to do in that case as well.
1539 */
1540 list_add(&new->entry, &old->entry);
1541 /*
1542 * Now check if we can merge with the preceding and/or
1543 * following ranges.
1544 */
1545 merge_lpi_ranges(old, new);
1546 merge_lpi_ranges(new, list_next_entry(new, entry));
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001547
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001548 mutex_unlock(&lpi_range_lock);
Rasmus Villemoesb31a3832019-03-12 18:33:47 +01001549 return 0;
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001550}
1551
Tomasz Nowicki04a0e4d2016-01-19 14:11:18 +01001552static int __init its_lpi_init(u32 id_bits)
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001553{
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001554 u32 lpis = (1UL << id_bits) - 8192;
Marc Zyngier12b29052018-05-31 09:01:59 +01001555 u32 numlpis;
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001556 int err;
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001557
Marc Zyngier12b29052018-05-31 09:01:59 +01001558 numlpis = 1UL << GICD_TYPER_NUM_LPIS(gic_rdists->gicd_typer);
1559
1560 if (numlpis > 2 && !WARN_ON(numlpis > lpis)) {
1561 lpis = numlpis;
1562 pr_info("ITS: Using hypervisor restricted LPI range [%u]\n",
1563 lpis);
1564 }
1565
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001566 /*
1567 * Initializing the allocator is just the same as freeing the
1568 * full range of LPIs.
1569 */
1570 err = free_lpi_range(8192, lpis);
1571 pr_debug("ITS: Allocator initialized for %u LPIs\n", lpis);
1572 return err;
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001573}
1574
Marc Zyngier38dd7c42018-05-27 17:03:03 +01001575static unsigned long *its_lpi_alloc(int nr_irqs, u32 *base, int *nr_ids)
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001576{
1577 unsigned long *bitmap = NULL;
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001578 int err = 0;
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001579
1580 do {
Marc Zyngier38dd7c42018-05-27 17:03:03 +01001581 err = alloc_lpi_range(nr_irqs, base);
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001582 if (!err)
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001583 break;
1584
Marc Zyngier38dd7c42018-05-27 17:03:03 +01001585 nr_irqs /= 2;
1586 } while (nr_irqs > 0);
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001587
Marc Zyngier45725e02019-01-29 15:19:23 +00001588 if (!nr_irqs)
1589 err = -ENOSPC;
1590
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001591 if (err)
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001592 goto out;
1593
Marc Zyngier38dd7c42018-05-27 17:03:03 +01001594 bitmap = kcalloc(BITS_TO_LONGS(nr_irqs), sizeof (long), GFP_ATOMIC);
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001595 if (!bitmap)
1596 goto out;
1597
Marc Zyngier38dd7c42018-05-27 17:03:03 +01001598 *nr_ids = nr_irqs;
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001599
1600out:
Marc Zyngierc8415b92015-10-02 16:44:05 +01001601 if (!bitmap)
1602 *base = *nr_ids = 0;
1603
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001604 return bitmap;
1605}
1606
Marc Zyngier38dd7c42018-05-27 17:03:03 +01001607static void its_lpi_free(unsigned long *bitmap, u32 base, u32 nr_ids)
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001608{
Marc Zyngier880cb3c2018-05-27 16:14:15 +01001609 WARN_ON(free_lpi_range(base, nr_ids));
Marc Zyngiercf2be8b2016-12-19 18:49:59 +00001610 kfree(bitmap);
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001611}
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001612
Marc Zyngier053be482018-07-27 15:02:27 +01001613static void gic_reset_prop_table(void *va)
1614{
1615 /* Priority 0xa0, Group-1, disabled */
1616 memset(va, LPI_PROP_DEFAULT_PRIO | LPI_PROP_GROUP1, LPI_PROPBASE_SZ);
1617
1618 /* Make sure the GIC will observe the written configuration */
1619 gic_flush_dcache_to_poc(va, LPI_PROPBASE_SZ);
1620}
1621
Marc Zyngier0e5ccf92016-12-19 18:15:05 +00001622static struct page *its_allocate_prop_table(gfp_t gfp_flags)
1623{
1624 struct page *prop_page;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001625
Marc Zyngier0e5ccf92016-12-19 18:15:05 +00001626 prop_page = alloc_pages(gfp_flags, get_order(LPI_PROPBASE_SZ));
1627 if (!prop_page)
1628 return NULL;
1629
Marc Zyngier053be482018-07-27 15:02:27 +01001630 gic_reset_prop_table(page_address(prop_page));
Marc Zyngier0e5ccf92016-12-19 18:15:05 +00001631
1632 return prop_page;
1633}
1634
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00001635static void its_free_prop_table(struct page *prop_page)
1636{
1637 free_pages((unsigned long)page_address(prop_page),
1638 get_order(LPI_PROPBASE_SZ));
1639}
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001640
Marc Zyngier5e2c9f92018-07-27 16:23:18 +01001641static bool gic_check_reserved_range(phys_addr_t addr, unsigned long size)
1642{
1643 phys_addr_t start, end, addr_end;
1644 u64 i;
1645
1646 /*
1647 * We don't bother checking for a kdump kernel as by
1648 * construction, the LPI tables are out of this kernel's
1649 * memory map.
1650 */
1651 if (is_kdump_kernel())
1652 return true;
1653
1654 addr_end = addr + size - 1;
1655
1656 for_each_reserved_mem_region(i, &start, &end) {
1657 if (addr >= start && addr_end <= end)
1658 return true;
1659 }
1660
1661 /* Not found, not a good sign... */
1662 pr_warn("GICv3: Expected reserved range [%pa:%pa], not found\n",
1663 &addr, &addr_end);
1664 add_taint(TAINT_CRAP, LOCKDEP_STILL_OK);
1665 return false;
1666}
1667
Marc Zyngier3fb68fa2018-07-27 16:21:18 +01001668static int gic_reserve_range(phys_addr_t addr, unsigned long size)
1669{
1670 if (efi_enabled(EFI_CONFIG_TABLES))
1671 return efi_mem_reserve_persistent(addr, size);
1672
1673 return 0;
1674}
1675
Marc Zyngier11e37d32018-07-27 13:38:54 +01001676static int __init its_setup_lpi_prop_table(void)
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001677{
Marc Zyngierc440a9d2018-07-27 15:40:13 +01001678 if (gic_rdists->flags & RDIST_FLAGS_RD_TABLES_PREALLOCATED) {
1679 u64 val;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001680
Marc Zyngierc440a9d2018-07-27 15:40:13 +01001681 val = gicr_read_propbaser(gic_data_rdist_rd_base() + GICR_PROPBASER);
1682 lpi_id_bits = (val & GICR_PROPBASER_IDBITS_MASK) + 1;
1683
1684 gic_rdists->prop_table_pa = val & GENMASK_ULL(51, 12);
1685 gic_rdists->prop_table_va = memremap(gic_rdists->prop_table_pa,
1686 LPI_PROPBASE_SZ,
1687 MEMREMAP_WB);
1688 gic_reset_prop_table(gic_rdists->prop_table_va);
1689 } else {
1690 struct page *page;
1691
1692 lpi_id_bits = min_t(u32,
1693 GICD_TYPER_ID_BITS(gic_rdists->gicd_typer),
1694 ITS_MAX_LPI_NRBITS);
1695 page = its_allocate_prop_table(GFP_NOWAIT);
1696 if (!page) {
1697 pr_err("Failed to allocate PROPBASE\n");
1698 return -ENOMEM;
1699 }
1700
1701 gic_rdists->prop_table_pa = page_to_phys(page);
1702 gic_rdists->prop_table_va = page_address(page);
Marc Zyngier3fb68fa2018-07-27 16:21:18 +01001703 WARN_ON(gic_reserve_range(gic_rdists->prop_table_pa,
1704 LPI_PROPBASE_SZ));
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001705 }
1706
Marc Zyngiere1a2e202018-07-27 14:36:00 +01001707 pr_info("GICv3: using LPI property table @%pa\n",
1708 &gic_rdists->prop_table_pa);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001709
Shanker Donthineni6c31e122017-06-22 18:19:14 -05001710 return its_lpi_init(lpi_id_bits);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001711}
1712
1713static const char *its_base_type_string[] = {
1714 [GITS_BASER_TYPE_DEVICE] = "Devices",
1715 [GITS_BASER_TYPE_VCPU] = "Virtual CPUs",
Marc Zyngier4f46de92016-12-20 15:50:14 +00001716 [GITS_BASER_TYPE_RESERVED3] = "Reserved (3)",
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001717 [GITS_BASER_TYPE_COLLECTION] = "Interrupt Collections",
1718 [GITS_BASER_TYPE_RESERVED5] = "Reserved (5)",
1719 [GITS_BASER_TYPE_RESERVED6] = "Reserved (6)",
1720 [GITS_BASER_TYPE_RESERVED7] = "Reserved (7)",
1721};
1722
Shanker Donthineni2d81d422016-06-06 18:17:28 -05001723static u64 its_read_baser(struct its_node *its, struct its_baser *baser)
1724{
1725 u32 idx = baser - its->tables;
1726
Vladimir Murzin0968a612016-11-02 11:54:06 +00001727 return gits_read_baser(its->base + GITS_BASER + (idx << 3));
Shanker Donthineni2d81d422016-06-06 18:17:28 -05001728}
1729
1730static void its_write_baser(struct its_node *its, struct its_baser *baser,
1731 u64 val)
1732{
1733 u32 idx = baser - its->tables;
1734
Vladimir Murzin0968a612016-11-02 11:54:06 +00001735 gits_write_baser(val, its->base + GITS_BASER + (idx << 3));
Shanker Donthineni2d81d422016-06-06 18:17:28 -05001736 baser->val = its_read_baser(its, baser);
1737}
1738
Shanker Donthineni93473592016-06-06 18:17:30 -05001739static int its_setup_baser(struct its_node *its, struct its_baser *baser,
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001740 u64 cache, u64 shr, u32 psz, u32 order,
1741 bool indirect)
Shanker Donthineni93473592016-06-06 18:17:30 -05001742{
1743 u64 val = its_read_baser(its, baser);
1744 u64 esz = GITS_BASER_ENTRY_SIZE(val);
1745 u64 type = GITS_BASER_TYPE(val);
Shanker Donthineni30ae9612017-10-09 11:46:55 -05001746 u64 baser_phys, tmp;
Shanker Donthineni93473592016-06-06 18:17:30 -05001747 u32 alloc_pages;
Shanker Donthineni539d3782019-01-14 09:50:19 +00001748 struct page *page;
Shanker Donthineni93473592016-06-06 18:17:30 -05001749 void *base;
Shanker Donthineni93473592016-06-06 18:17:30 -05001750
1751retry_alloc_baser:
1752 alloc_pages = (PAGE_ORDER_TO_SIZE(order) / psz);
1753 if (alloc_pages > GITS_BASER_PAGES_MAX) {
1754 pr_warn("ITS@%pa: %s too large, reduce ITS pages %u->%u\n",
1755 &its->phys_base, its_base_type_string[type],
1756 alloc_pages, GITS_BASER_PAGES_MAX);
1757 alloc_pages = GITS_BASER_PAGES_MAX;
1758 order = get_order(GITS_BASER_PAGES_MAX * psz);
1759 }
1760
Shanker Donthineni539d3782019-01-14 09:50:19 +00001761 page = alloc_pages_node(its->numa_node, GFP_KERNEL | __GFP_ZERO, order);
1762 if (!page)
Shanker Donthineni93473592016-06-06 18:17:30 -05001763 return -ENOMEM;
1764
Shanker Donthineni539d3782019-01-14 09:50:19 +00001765 base = (void *)page_address(page);
Shanker Donthineni30ae9612017-10-09 11:46:55 -05001766 baser_phys = virt_to_phys(base);
1767
1768 /* Check if the physical address of the memory is above 48bits */
1769 if (IS_ENABLED(CONFIG_ARM64_64K_PAGES) && (baser_phys >> 48)) {
1770
1771 /* 52bit PA is supported only when PageSize=64K */
1772 if (psz != SZ_64K) {
1773 pr_err("ITS: no 52bit PA support when psz=%d\n", psz);
1774 free_pages((unsigned long)base, order);
1775 return -ENXIO;
1776 }
1777
1778 /* Convert 52bit PA to 48bit field */
1779 baser_phys = GITS_BASER_PHYS_52_to_48(baser_phys);
1780 }
1781
Shanker Donthineni93473592016-06-06 18:17:30 -05001782retry_baser:
Shanker Donthineni30ae9612017-10-09 11:46:55 -05001783 val = (baser_phys |
Shanker Donthineni93473592016-06-06 18:17:30 -05001784 (type << GITS_BASER_TYPE_SHIFT) |
1785 ((esz - 1) << GITS_BASER_ENTRY_SIZE_SHIFT) |
1786 ((alloc_pages - 1) << GITS_BASER_PAGES_SHIFT) |
1787 cache |
1788 shr |
1789 GITS_BASER_VALID);
1790
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001791 val |= indirect ? GITS_BASER_INDIRECT : 0x0;
1792
Shanker Donthineni93473592016-06-06 18:17:30 -05001793 switch (psz) {
1794 case SZ_4K:
1795 val |= GITS_BASER_PAGE_SIZE_4K;
1796 break;
1797 case SZ_16K:
1798 val |= GITS_BASER_PAGE_SIZE_16K;
1799 break;
1800 case SZ_64K:
1801 val |= GITS_BASER_PAGE_SIZE_64K;
1802 break;
1803 }
1804
1805 its_write_baser(its, baser, val);
1806 tmp = baser->val;
1807
1808 if ((val ^ tmp) & GITS_BASER_SHAREABILITY_MASK) {
1809 /*
1810 * Shareability didn't stick. Just use
1811 * whatever the read reported, which is likely
1812 * to be the only thing this redistributor
1813 * supports. If that's zero, make it
1814 * non-cacheable as well.
1815 */
1816 shr = tmp & GITS_BASER_SHAREABILITY_MASK;
1817 if (!shr) {
1818 cache = GITS_BASER_nC;
Vladimir Murzin328191c2016-11-02 11:54:05 +00001819 gic_flush_dcache_to_poc(base, PAGE_ORDER_TO_SIZE(order));
Shanker Donthineni93473592016-06-06 18:17:30 -05001820 }
1821 goto retry_baser;
1822 }
1823
1824 if ((val ^ tmp) & GITS_BASER_PAGE_SIZE_MASK) {
1825 /*
1826 * Page size didn't stick. Let's try a smaller
1827 * size and retry. If we reach 4K, then
1828 * something is horribly wrong...
1829 */
1830 free_pages((unsigned long)base, order);
1831 baser->base = NULL;
1832
1833 switch (psz) {
1834 case SZ_16K:
1835 psz = SZ_4K;
1836 goto retry_alloc_baser;
1837 case SZ_64K:
1838 psz = SZ_16K;
1839 goto retry_alloc_baser;
1840 }
1841 }
1842
1843 if (val != tmp) {
Vladimir Murzinb11283e2016-11-02 11:54:03 +00001844 pr_err("ITS@%pa: %s doesn't stick: %llx %llx\n",
Shanker Donthineni93473592016-06-06 18:17:30 -05001845 &its->phys_base, its_base_type_string[type],
Vladimir Murzinb11283e2016-11-02 11:54:03 +00001846 val, tmp);
Shanker Donthineni93473592016-06-06 18:17:30 -05001847 free_pages((unsigned long)base, order);
1848 return -ENXIO;
1849 }
1850
1851 baser->order = order;
1852 baser->base = base;
1853 baser->psz = psz;
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001854 tmp = indirect ? GITS_LVL1_ENTRY_SIZE : esz;
Shanker Donthineni93473592016-06-06 18:17:30 -05001855
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001856 pr_info("ITS@%pa: allocated %d %s @%lx (%s, esz %d, psz %dK, shr %d)\n",
Vladimir Murzind524eaa2016-11-02 11:54:04 +00001857 &its->phys_base, (int)(PAGE_ORDER_TO_SIZE(order) / (int)tmp),
Shanker Donthineni93473592016-06-06 18:17:30 -05001858 its_base_type_string[type],
1859 (unsigned long)virt_to_phys(base),
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001860 indirect ? "indirect" : "flat", (int)esz,
Shanker Donthineni93473592016-06-06 18:17:30 -05001861 psz / SZ_1K, (int)shr >> GITS_BASER_SHAREABILITY_SHIFT);
1862
1863 return 0;
1864}
1865
Marc Zyngier4cacac52016-12-19 18:18:34 +00001866static bool its_parse_indirect_baser(struct its_node *its,
1867 struct its_baser *baser,
Shanker Donthineni32bd44d2017-10-07 15:43:48 -05001868 u32 psz, u32 *order, u32 ids)
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001869{
Marc Zyngier4cacac52016-12-19 18:18:34 +00001870 u64 tmp = its_read_baser(its, baser);
1871 u64 type = GITS_BASER_TYPE(tmp);
1872 u64 esz = GITS_BASER_ENTRY_SIZE(tmp);
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06001873 u64 val = GITS_BASER_InnerShareable | GITS_BASER_RaWaWb;
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001874 u32 new_order = *order;
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001875 bool indirect = false;
1876
1877 /* No need to enable Indirection if memory requirement < (psz*2)bytes */
1878 if ((esz << ids) > (psz * 2)) {
1879 /*
1880 * Find out whether hw supports a single or two-level table by
1881 * table by reading bit at offset '62' after writing '1' to it.
1882 */
1883 its_write_baser(its, baser, val | GITS_BASER_INDIRECT);
1884 indirect = !!(baser->val & GITS_BASER_INDIRECT);
1885
1886 if (indirect) {
1887 /*
1888 * The size of the lvl2 table is equal to ITS page size
1889 * which is 'psz'. For computing lvl1 table size,
1890 * subtract ID bits that sparse lvl2 table from 'ids'
1891 * which is reported by ITS hardware times lvl1 table
1892 * entry size.
1893 */
Vladimir Murzind524eaa2016-11-02 11:54:04 +00001894 ids -= ilog2(psz / (int)esz);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001895 esz = GITS_LVL1_ENTRY_SIZE;
1896 }
1897 }
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001898
1899 /*
1900 * Allocate as many entries as required to fit the
1901 * range of device IDs that the ITS can grok... The ID
1902 * space being incredibly sparse, this results in a
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001903 * massive waste of memory if two-level device table
1904 * feature is not supported by hardware.
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001905 */
1906 new_order = max_t(u32, get_order(esz << ids), new_order);
1907 if (new_order >= MAX_ORDER) {
1908 new_order = MAX_ORDER - 1;
Vladimir Murzind524eaa2016-11-02 11:54:04 +00001909 ids = ilog2(PAGE_ORDER_TO_SIZE(new_order) / (int)esz);
Marc Zyngier4cacac52016-12-19 18:18:34 +00001910 pr_warn("ITS@%pa: %s Table too large, reduce ids %u->%u\n",
1911 &its->phys_base, its_base_type_string[type],
1912 its->device_ids, ids);
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001913 }
1914
1915 *order = new_order;
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001916
1917 return indirect;
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001918}
1919
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001920static void its_free_tables(struct its_node *its)
1921{
1922 int i;
1923
1924 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
Shanker Donthineni1a485f42016-02-01 20:19:44 -06001925 if (its->tables[i].base) {
1926 free_pages((unsigned long)its->tables[i].base,
1927 its->tables[i].order);
1928 its->tables[i].base = NULL;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001929 }
1930 }
1931}
1932
Shanker Donthineni0e0b0f62016-06-06 18:17:31 -05001933static int its_alloc_tables(struct its_node *its)
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001934{
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001935 u64 shr = GITS_BASER_InnerShareable;
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06001936 u64 cache = GITS_BASER_RaWaWb;
Shanker Donthineni93473592016-06-06 18:17:30 -05001937 u32 psz = SZ_64K;
1938 int err, i;
Robert Richter94100972015-09-21 22:58:38 +02001939
Ard Biesheuvelfa150012017-10-17 17:55:54 +01001940 if (its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_22375)
1941 /* erratum 24313: ignore memory access type */
1942 cache = GITS_BASER_nCnB;
Shanker Donthineni466b7d12016-03-09 22:10:49 -06001943
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001944 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
Shanker Donthineni2d81d422016-06-06 18:17:28 -05001945 struct its_baser *baser = its->tables + i;
1946 u64 val = its_read_baser(its, baser);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001947 u64 type = GITS_BASER_TYPE(val);
Shanker Donthineni93473592016-06-06 18:17:30 -05001948 u32 order = get_order(psz);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001949 bool indirect = false;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001950
Marc Zyngier4cacac52016-12-19 18:18:34 +00001951 switch (type) {
1952 case GITS_BASER_TYPE_NONE:
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001953 continue;
1954
Marc Zyngier4cacac52016-12-19 18:18:34 +00001955 case GITS_BASER_TYPE_DEVICE:
Shanker Donthineni32bd44d2017-10-07 15:43:48 -05001956 indirect = its_parse_indirect_baser(its, baser,
1957 psz, &order,
1958 its->device_ids);
Zenghui Yu8d565742019-02-10 05:24:10 +00001959 break;
1960
Marc Zyngier4cacac52016-12-19 18:18:34 +00001961 case GITS_BASER_TYPE_VCPU:
1962 indirect = its_parse_indirect_baser(its, baser,
Shanker Donthineni32bd44d2017-10-07 15:43:48 -05001963 psz, &order,
1964 ITS_MAX_VPEID_BITS);
Marc Zyngier4cacac52016-12-19 18:18:34 +00001965 break;
1966 }
Marc Zyngierf54b97e2015-03-06 16:37:41 +00001967
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001968 err = its_setup_baser(its, baser, cache, shr, psz, order, indirect);
Shanker Donthineni93473592016-06-06 18:17:30 -05001969 if (err < 0) {
1970 its_free_tables(its);
1971 return err;
Robert Richter30f21362015-09-21 22:58:34 +02001972 }
1973
Shanker Donthineni93473592016-06-06 18:17:30 -05001974 /* Update settings which will be used for next BASERn */
1975 psz = baser->psz;
1976 cache = baser->val & GITS_BASER_CACHEABILITY_MASK;
1977 shr = baser->val & GITS_BASER_SHAREABILITY_MASK;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001978 }
1979
1980 return 0;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001981}
1982
1983static int its_alloc_collections(struct its_node *its)
1984{
Marc Zyngier83559b42018-06-22 10:52:52 +01001985 int i;
1986
Kees Cook6396bb22018-06-12 14:03:40 -07001987 its->collections = kcalloc(nr_cpu_ids, sizeof(*its->collections),
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001988 GFP_KERNEL);
1989 if (!its->collections)
1990 return -ENOMEM;
1991
Marc Zyngier83559b42018-06-22 10:52:52 +01001992 for (i = 0; i < nr_cpu_ids; i++)
1993 its->collections[i].target_address = ~0ULL;
1994
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001995 return 0;
1996}
1997
Marc Zyngier7c297a22016-12-19 18:34:38 +00001998static struct page *its_allocate_pending_table(gfp_t gfp_flags)
1999{
2000 struct page *pend_page;
Marc Zyngieradaab502018-07-17 18:06:39 +01002001
Marc Zyngier7c297a22016-12-19 18:34:38 +00002002 pend_page = alloc_pages(gfp_flags | __GFP_ZERO,
Marc Zyngieradaab502018-07-17 18:06:39 +01002003 get_order(LPI_PENDBASE_SZ));
Marc Zyngier7c297a22016-12-19 18:34:38 +00002004 if (!pend_page)
2005 return NULL;
2006
2007 /* Make sure the GIC will observe the zero-ed page */
2008 gic_flush_dcache_to_poc(page_address(pend_page), LPI_PENDBASE_SZ);
2009
2010 return pend_page;
2011}
2012
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002013static void its_free_pending_table(struct page *pt)
2014{
Marc Zyngieradaab502018-07-17 18:06:39 +01002015 free_pages((unsigned long)page_address(pt), get_order(LPI_PENDBASE_SZ));
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002016}
2017
Marc Zyngierc6e2ccb2018-06-26 11:21:11 +01002018/*
Marc Zyngier5e2c9f92018-07-27 16:23:18 +01002019 * Booting with kdump and LPIs enabled is generally fine. Any other
2020 * case is wrong in the absence of firmware/EFI support.
Marc Zyngierc6e2ccb2018-06-26 11:21:11 +01002021 */
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002022static bool enabled_lpis_allowed(void)
2023{
Marc Zyngier5e2c9f92018-07-27 16:23:18 +01002024 phys_addr_t addr;
2025 u64 val;
Marc Zyngierc6e2ccb2018-06-26 11:21:11 +01002026
Marc Zyngier5e2c9f92018-07-27 16:23:18 +01002027 /* Check whether the property table is in a reserved region */
2028 val = gicr_read_propbaser(gic_data_rdist_rd_base() + GICR_PROPBASER);
2029 addr = val & GENMASK_ULL(51, 12);
2030
2031 return gic_check_reserved_range(addr, LPI_PROPBASE_SZ);
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002032}
2033
Marc Zyngier11e37d32018-07-27 13:38:54 +01002034static int __init allocate_lpi_tables(void)
2035{
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002036 u64 val;
Marc Zyngier11e37d32018-07-27 13:38:54 +01002037 int err, cpu;
2038
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002039 /*
2040 * If LPIs are enabled while we run this from the boot CPU,
2041 * flag the RD tables as pre-allocated if the stars do align.
2042 */
2043 val = readl_relaxed(gic_data_rdist_rd_base() + GICR_CTLR);
2044 if ((val & GICR_CTLR_ENABLE_LPIS) && enabled_lpis_allowed()) {
2045 gic_rdists->flags |= (RDIST_FLAGS_RD_TABLES_PREALLOCATED |
2046 RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING);
2047 pr_info("GICv3: Using preallocated redistributor tables\n");
2048 }
2049
Marc Zyngier11e37d32018-07-27 13:38:54 +01002050 err = its_setup_lpi_prop_table();
2051 if (err)
2052 return err;
2053
2054 /*
2055 * We allocate all the pending tables anyway, as we may have a
2056 * mix of RDs that have had LPIs enabled, and some that
2057 * don't. We'll free the unused ones as each CPU comes online.
2058 */
2059 for_each_possible_cpu(cpu) {
2060 struct page *pend_page;
2061
2062 pend_page = its_allocate_pending_table(GFP_NOWAIT);
2063 if (!pend_page) {
2064 pr_err("Failed to allocate PENDBASE for CPU%d\n", cpu);
2065 return -ENOMEM;
2066 }
2067
2068 gic_data_rdist_cpu(cpu)->pend_page = pend_page;
2069 }
2070
2071 return 0;
2072}
2073
Heyi Guo64794502019-01-24 21:37:08 +08002074static u64 its_clear_vpend_valid(void __iomem *vlpi_base)
2075{
2076 u32 count = 1000000; /* 1s! */
2077 bool clean;
2078 u64 val;
2079
2080 val = gits_read_vpendbaser(vlpi_base + GICR_VPENDBASER);
2081 val &= ~GICR_VPENDBASER_Valid;
2082 gits_write_vpendbaser(val, vlpi_base + GICR_VPENDBASER);
2083
2084 do {
2085 val = gits_read_vpendbaser(vlpi_base + GICR_VPENDBASER);
2086 clean = !(val & GICR_VPENDBASER_Dirty);
2087 if (!clean) {
2088 count--;
2089 cpu_relax();
2090 udelay(1);
2091 }
2092 } while (!clean && count);
2093
2094 return val;
2095}
2096
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002097static void its_cpu_init_lpis(void)
2098{
2099 void __iomem *rbase = gic_data_rdist_rd_base();
2100 struct page *pend_page;
Marc Zyngier11e37d32018-07-27 13:38:54 +01002101 phys_addr_t paddr;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002102 u64 val, tmp;
2103
Marc Zyngier11e37d32018-07-27 13:38:54 +01002104 if (gic_data_rdist()->lpi_enabled)
2105 return;
2106
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002107 val = readl_relaxed(rbase + GICR_CTLR);
2108 if ((gic_rdists->flags & RDIST_FLAGS_RD_TABLES_PREALLOCATED) &&
2109 (val & GICR_CTLR_ENABLE_LPIS)) {
Marc Zyngierf842ca82018-07-27 16:03:31 +01002110 /*
2111 * Check that we get the same property table on all
2112 * RDs. If we don't, this is hopeless.
2113 */
2114 paddr = gicr_read_propbaser(rbase + GICR_PROPBASER);
2115 paddr &= GENMASK_ULL(51, 12);
2116 if (WARN_ON(gic_rdists->prop_table_pa != paddr))
2117 add_taint(TAINT_CRAP, LOCKDEP_STILL_OK);
2118
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002119 paddr = gicr_read_pendbaser(rbase + GICR_PENDBASER);
2120 paddr &= GENMASK_ULL(51, 16);
2121
Marc Zyngier5e2c9f92018-07-27 16:23:18 +01002122 WARN_ON(!gic_check_reserved_range(paddr, LPI_PENDBASE_SZ));
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002123 its_free_pending_table(gic_data_rdist()->pend_page);
2124 gic_data_rdist()->pend_page = NULL;
2125
2126 goto out;
2127 }
2128
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002129 pend_page = gic_data_rdist()->pend_page;
Marc Zyngier11e37d32018-07-27 13:38:54 +01002130 paddr = page_to_phys(pend_page);
Marc Zyngier3fb68fa2018-07-27 16:21:18 +01002131 WARN_ON(gic_reserve_range(paddr, LPI_PENDBASE_SZ));
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002132
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002133 /* set PROPBASE */
Marc Zyngiere1a2e202018-07-27 14:36:00 +01002134 val = (gic_rdists->prop_table_pa |
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002135 GICR_PROPBASER_InnerShareable |
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06002136 GICR_PROPBASER_RaWaWb |
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002137 ((LPI_NRBITS - 1) & GICR_PROPBASER_IDBITS_MASK));
2138
Vladimir Murzin0968a612016-11-02 11:54:06 +00002139 gicr_write_propbaser(val, rbase + GICR_PROPBASER);
2140 tmp = gicr_read_propbaser(rbase + GICR_PROPBASER);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002141
2142 if ((tmp ^ val) & GICR_PROPBASER_SHAREABILITY_MASK) {
Marc Zyngier241a3862015-03-27 14:15:05 +00002143 if (!(tmp & GICR_PROPBASER_SHAREABILITY_MASK)) {
2144 /*
2145 * The HW reports non-shareable, we must
2146 * remove the cacheability attributes as
2147 * well.
2148 */
2149 val &= ~(GICR_PROPBASER_SHAREABILITY_MASK |
2150 GICR_PROPBASER_CACHEABILITY_MASK);
2151 val |= GICR_PROPBASER_nC;
Vladimir Murzin0968a612016-11-02 11:54:06 +00002152 gicr_write_propbaser(val, rbase + GICR_PROPBASER);
Marc Zyngier241a3862015-03-27 14:15:05 +00002153 }
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002154 pr_info_once("GIC: using cache flushing for LPI property table\n");
2155 gic_rdists->flags |= RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING;
2156 }
2157
2158 /* set PENDBASE */
2159 val = (page_to_phys(pend_page) |
Marc Zyngier4ad3e362015-03-27 14:15:04 +00002160 GICR_PENDBASER_InnerShareable |
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06002161 GICR_PENDBASER_RaWaWb);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002162
Vladimir Murzin0968a612016-11-02 11:54:06 +00002163 gicr_write_pendbaser(val, rbase + GICR_PENDBASER);
2164 tmp = gicr_read_pendbaser(rbase + GICR_PENDBASER);
Marc Zyngier241a3862015-03-27 14:15:05 +00002165
2166 if (!(tmp & GICR_PENDBASER_SHAREABILITY_MASK)) {
2167 /*
2168 * The HW reports non-shareable, we must remove the
2169 * cacheability attributes as well.
2170 */
2171 val &= ~(GICR_PENDBASER_SHAREABILITY_MASK |
2172 GICR_PENDBASER_CACHEABILITY_MASK);
2173 val |= GICR_PENDBASER_nC;
Vladimir Murzin0968a612016-11-02 11:54:06 +00002174 gicr_write_pendbaser(val, rbase + GICR_PENDBASER);
Marc Zyngier241a3862015-03-27 14:15:05 +00002175 }
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002176
2177 /* Enable LPIs */
2178 val = readl_relaxed(rbase + GICR_CTLR);
2179 val |= GICR_CTLR_ENABLE_LPIS;
2180 writel_relaxed(val, rbase + GICR_CTLR);
2181
Heyi Guo64794502019-01-24 21:37:08 +08002182 if (gic_rdists->has_vlpis) {
2183 void __iomem *vlpi_base = gic_data_rdist_vlpi_base();
2184
2185 /*
2186 * It's possible for CPU to receive VLPIs before it is
2187 * sheduled as a vPE, especially for the first CPU, and the
2188 * VLPI with INTID larger than 2^(IDbits+1) will be considered
2189 * as out of range and dropped by GIC.
2190 * So we initialize IDbits to known value to avoid VLPI drop.
2191 */
2192 val = (LPI_NRBITS - 1) & GICR_VPROPBASER_IDBITS_MASK;
2193 pr_debug("GICv4: CPU%d: Init IDbits to 0x%llx for GICR_VPROPBASER\n",
2194 smp_processor_id(), val);
2195 gits_write_vpropbaser(val, vlpi_base + GICR_VPROPBASER);
2196
2197 /*
2198 * Also clear Valid bit of GICR_VPENDBASER, in case some
2199 * ancient programming gets left in and has possibility of
2200 * corrupting memory.
2201 */
2202 val = its_clear_vpend_valid(vlpi_base);
2203 WARN_ON(val & GICR_VPENDBASER_Dirty);
2204 }
2205
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002206 /* Make sure the GIC has seen the above */
2207 dsb(sy);
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002208out:
Marc Zyngier11e37d32018-07-27 13:38:54 +01002209 gic_data_rdist()->lpi_enabled = true;
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002210 pr_info("GICv3: CPU%d: using %s LPI pending table @%pa\n",
Marc Zyngier11e37d32018-07-27 13:38:54 +01002211 smp_processor_id(),
Marc Zyngierc440a9d2018-07-27 15:40:13 +01002212 gic_data_rdist()->pend_page ? "allocated" : "reserved",
Marc Zyngier11e37d32018-07-27 13:38:54 +01002213 &paddr);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002214}
2215
Derek Basehore920181c2018-02-28 21:48:20 -08002216static void its_cpu_init_collection(struct its_node *its)
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002217{
Derek Basehore920181c2018-02-28 21:48:20 -08002218 int cpu = smp_processor_id();
2219 u64 target;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002220
Derek Basehore920181c2018-02-28 21:48:20 -08002221 /* avoid cross node collections and its mapping */
2222 if (its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144) {
2223 struct device_node *cpu_node;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002224
Derek Basehore920181c2018-02-28 21:48:20 -08002225 cpu_node = of_get_cpu_node(cpu, NULL);
2226 if (its->numa_node != NUMA_NO_NODE &&
2227 its->numa_node != of_node_to_nid(cpu_node))
2228 return;
2229 }
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002230
Derek Basehore920181c2018-02-28 21:48:20 -08002231 /*
2232 * We now have to bind each collection to its target
2233 * redistributor.
2234 */
2235 if (gic_read_typer(its->base + GITS_TYPER) & GITS_TYPER_PTA) {
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002236 /*
Derek Basehore920181c2018-02-28 21:48:20 -08002237 * This ITS wants the physical address of the
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002238 * redistributor.
2239 */
Derek Basehore920181c2018-02-28 21:48:20 -08002240 target = gic_data_rdist()->phys_base;
2241 } else {
2242 /* This ITS wants a linear CPU number. */
2243 target = gic_read_typer(gic_data_rdist_rd_base() + GICR_TYPER);
2244 target = GICR_TYPER_CPU_NUMBER(target) << 16;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002245 }
2246
Derek Basehore920181c2018-02-28 21:48:20 -08002247 /* Perform collection mapping */
2248 its->collections[cpu].target_address = target;
2249 its->collections[cpu].col_id = cpu;
2250
2251 its_send_mapc(its, &its->collections[cpu], 1);
2252 its_send_invall(its, &its->collections[cpu]);
2253}
2254
2255static void its_cpu_init_collections(void)
2256{
2257 struct its_node *its;
2258
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +02002259 raw_spin_lock(&its_lock);
Derek Basehore920181c2018-02-28 21:48:20 -08002260
2261 list_for_each_entry(its, &its_nodes, entry)
2262 its_cpu_init_collection(its);
2263
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +02002264 raw_spin_unlock(&its_lock);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00002265}
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002266
2267static struct its_device *its_find_device(struct its_node *its, u32 dev_id)
2268{
2269 struct its_device *its_dev = NULL, *tmp;
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002270 unsigned long flags;
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002271
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002272 raw_spin_lock_irqsave(&its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002273
2274 list_for_each_entry(tmp, &its->its_device_list, entry) {
2275 if (tmp->device_id == dev_id) {
2276 its_dev = tmp;
2277 break;
2278 }
2279 }
2280
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002281 raw_spin_unlock_irqrestore(&its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002282
2283 return its_dev;
2284}
2285
Shanker Donthineni466b7d12016-03-09 22:10:49 -06002286static struct its_baser *its_get_baser(struct its_node *its, u32 type)
2287{
2288 int i;
2289
2290 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
2291 if (GITS_BASER_TYPE(its->tables[i].val) == type)
2292 return &its->tables[i];
2293 }
2294
2295 return NULL;
2296}
2297
Shanker Donthineni539d3782019-01-14 09:50:19 +00002298static bool its_alloc_table_entry(struct its_node *its,
2299 struct its_baser *baser, u32 id)
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002300{
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002301 struct page *page;
2302 u32 esz, idx;
2303 __le64 *table;
2304
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002305 /* Don't allow device id that exceeds single, flat table limit */
2306 esz = GITS_BASER_ENTRY_SIZE(baser->val);
2307 if (!(baser->val & GITS_BASER_INDIRECT))
Marc Zyngier70cc81e2016-12-19 18:53:02 +00002308 return (id < (PAGE_ORDER_TO_SIZE(baser->order) / esz));
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002309
2310 /* Compute 1st level table index & check if that exceeds table limit */
Marc Zyngier70cc81e2016-12-19 18:53:02 +00002311 idx = id >> ilog2(baser->psz / esz);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002312 if (idx >= (PAGE_ORDER_TO_SIZE(baser->order) / GITS_LVL1_ENTRY_SIZE))
2313 return false;
2314
2315 table = baser->base;
2316
2317 /* Allocate memory for 2nd level table */
2318 if (!table[idx]) {
Shanker Donthineni539d3782019-01-14 09:50:19 +00002319 page = alloc_pages_node(its->numa_node, GFP_KERNEL | __GFP_ZERO,
2320 get_order(baser->psz));
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002321 if (!page)
2322 return false;
2323
2324 /* Flush Lvl2 table to PoC if hw doesn't support coherency */
2325 if (!(baser->val & GITS_BASER_SHAREABILITY_MASK))
Vladimir Murzin328191c2016-11-02 11:54:05 +00002326 gic_flush_dcache_to_poc(page_address(page), baser->psz);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002327
2328 table[idx] = cpu_to_le64(page_to_phys(page) | GITS_BASER_VALID);
2329
2330 /* Flush Lvl1 entry to PoC if hw doesn't support coherency */
2331 if (!(baser->val & GITS_BASER_SHAREABILITY_MASK))
Vladimir Murzin328191c2016-11-02 11:54:05 +00002332 gic_flush_dcache_to_poc(table + idx, GITS_LVL1_ENTRY_SIZE);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002333
2334 /* Ensure updated table contents are visible to ITS hardware */
2335 dsb(sy);
2336 }
2337
2338 return true;
2339}
2340
Marc Zyngier70cc81e2016-12-19 18:53:02 +00002341static bool its_alloc_device_table(struct its_node *its, u32 dev_id)
2342{
2343 struct its_baser *baser;
2344
2345 baser = its_get_baser(its, GITS_BASER_TYPE_DEVICE);
2346
2347 /* Don't allow device id that exceeds ITS hardware limit */
2348 if (!baser)
2349 return (ilog2(dev_id) < its->device_ids);
2350
Shanker Donthineni539d3782019-01-14 09:50:19 +00002351 return its_alloc_table_entry(its, baser, dev_id);
Marc Zyngier70cc81e2016-12-19 18:53:02 +00002352}
2353
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002354static bool its_alloc_vpe_table(u32 vpe_id)
2355{
2356 struct its_node *its;
2357
2358 /*
2359 * Make sure the L2 tables are allocated on *all* v4 ITSs. We
2360 * could try and only do it on ITSs corresponding to devices
2361 * that have interrupts targeted at this VPE, but the
2362 * complexity becomes crazy (and you have tons of memory
2363 * anyway, right?).
2364 */
2365 list_for_each_entry(its, &its_nodes, entry) {
2366 struct its_baser *baser;
2367
2368 if (!its->is_v4)
2369 continue;
2370
2371 baser = its_get_baser(its, GITS_BASER_TYPE_VCPU);
2372 if (!baser)
2373 return false;
2374
Shanker Donthineni539d3782019-01-14 09:50:19 +00002375 if (!its_alloc_table_entry(its, baser, vpe_id))
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002376 return false;
2377 }
2378
2379 return true;
2380}
2381
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002382static struct its_device *its_create_device(struct its_node *its, u32 dev_id,
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002383 int nvecs, bool alloc_lpis)
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002384{
2385 struct its_device *dev;
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002386 unsigned long *lpi_map = NULL;
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002387 unsigned long flags;
Marc Zyngier591e5be2015-07-17 10:46:42 +01002388 u16 *col_map = NULL;
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002389 void *itt;
2390 int lpi_base;
2391 int nr_lpis;
Marc Zyngierc8481262014-12-12 10:51:24 +00002392 int nr_ites;
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002393 int sz;
2394
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002395 if (!its_alloc_device_table(its, dev_id))
Shanker Donthineni466b7d12016-03-09 22:10:49 -06002396 return NULL;
2397
Marc Zyngier147c8f32018-05-27 16:39:55 +01002398 if (WARN_ON(!is_power_of_2(nvecs)))
2399 nvecs = roundup_pow_of_two(nvecs);
2400
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002401 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Marc Zyngierc8481262014-12-12 10:51:24 +00002402 /*
Marc Zyngier147c8f32018-05-27 16:39:55 +01002403 * Even if the device wants a single LPI, the ITT must be
2404 * sized as a power of two (and you need at least one bit...).
Marc Zyngierc8481262014-12-12 10:51:24 +00002405 */
Marc Zyngier147c8f32018-05-27 16:39:55 +01002406 nr_ites = max(2, nvecs);
Marc Zyngierc8481262014-12-12 10:51:24 +00002407 sz = nr_ites * its->ite_size;
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002408 sz = max(sz, ITS_ITT_ALIGN) + ITS_ITT_ALIGN - 1;
Shanker Donthineni539d3782019-01-14 09:50:19 +00002409 itt = kzalloc_node(sz, GFP_KERNEL, its->numa_node);
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002410 if (alloc_lpis) {
Marc Zyngier38dd7c42018-05-27 17:03:03 +01002411 lpi_map = its_lpi_alloc(nvecs, &lpi_base, &nr_lpis);
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002412 if (lpi_map)
Kees Cook6396bb22018-06-12 14:03:40 -07002413 col_map = kcalloc(nr_lpis, sizeof(*col_map),
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002414 GFP_KERNEL);
2415 } else {
Kees Cook6396bb22018-06-12 14:03:40 -07002416 col_map = kcalloc(nr_ites, sizeof(*col_map), GFP_KERNEL);
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002417 nr_lpis = 0;
2418 lpi_base = 0;
2419 }
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002420
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002421 if (!dev || !itt || !col_map || (!lpi_map && alloc_lpis)) {
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002422 kfree(dev);
2423 kfree(itt);
2424 kfree(lpi_map);
Marc Zyngier591e5be2015-07-17 10:46:42 +01002425 kfree(col_map);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002426 return NULL;
2427 }
2428
Vladimir Murzin328191c2016-11-02 11:54:05 +00002429 gic_flush_dcache_to_poc(itt, sz);
Marc Zyngier5a9a8912015-09-13 12:14:32 +01002430
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002431 dev->its = its;
2432 dev->itt = itt;
Marc Zyngierc8481262014-12-12 10:51:24 +00002433 dev->nr_ites = nr_ites;
Marc Zyngier591e5be2015-07-17 10:46:42 +01002434 dev->event_map.lpi_map = lpi_map;
2435 dev->event_map.col_map = col_map;
2436 dev->event_map.lpi_base = lpi_base;
2437 dev->event_map.nr_lpis = nr_lpis;
Marc Zyngierd011e4e2016-12-20 09:44:41 +00002438 mutex_init(&dev->event_map.vlpi_lock);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002439 dev->device_id = dev_id;
2440 INIT_LIST_HEAD(&dev->entry);
2441
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002442 raw_spin_lock_irqsave(&its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002443 list_add(&dev->entry, &its->its_device_list);
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002444 raw_spin_unlock_irqrestore(&its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002445
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002446 /* Map device to its ITT */
2447 its_send_mapd(dev, 1);
2448
2449 return dev;
2450}
2451
2452static void its_free_device(struct its_device *its_dev)
2453{
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002454 unsigned long flags;
2455
2456 raw_spin_lock_irqsave(&its_dev->its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002457 list_del(&its_dev->entry);
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002458 raw_spin_unlock_irqrestore(&its_dev->its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002459 kfree(its_dev->itt);
2460 kfree(its_dev);
2461}
Marc Zyngierb48ac832014-11-24 14:35:16 +00002462
Marc Zyngier8208d172019-01-18 14:08:59 +00002463static int its_alloc_device_irq(struct its_device *dev, int nvecs, irq_hw_number_t *hwirq)
Marc Zyngierb48ac832014-11-24 14:35:16 +00002464{
2465 int idx;
2466
Zenghui Yu342be102019-07-27 06:14:22 +00002467 /* Find a free LPI region in lpi_map and allocate them. */
Marc Zyngier8208d172019-01-18 14:08:59 +00002468 idx = bitmap_find_free_region(dev->event_map.lpi_map,
2469 dev->event_map.nr_lpis,
2470 get_count_order(nvecs));
2471 if (idx < 0)
Marc Zyngierb48ac832014-11-24 14:35:16 +00002472 return -ENOSPC;
2473
Marc Zyngier591e5be2015-07-17 10:46:42 +01002474 *hwirq = dev->event_map.lpi_base + idx;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002475
Marc Zyngierb48ac832014-11-24 14:35:16 +00002476 return 0;
2477}
2478
Marc Zyngier54456db2015-07-28 14:46:21 +01002479static int its_msi_prepare(struct irq_domain *domain, struct device *dev,
2480 int nvec, msi_alloc_info_t *info)
Marc Zyngiere8137f42015-03-06 16:37:42 +00002481{
Marc Zyngierb48ac832014-11-24 14:35:16 +00002482 struct its_node *its;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002483 struct its_device *its_dev;
Marc Zyngier54456db2015-07-28 14:46:21 +01002484 struct msi_domain_info *msi_info;
2485 u32 dev_id;
Marc Zyngier9791ec72019-01-29 10:02:33 +00002486 int err = 0;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002487
Marc Zyngier54456db2015-07-28 14:46:21 +01002488 /*
Julien Gralla7c90f52019-04-18 16:58:14 +01002489 * We ignore "dev" entirely, and rely on the dev_id that has
Marc Zyngier54456db2015-07-28 14:46:21 +01002490 * been passed via the scratchpad. This limits this domain's
2491 * usefulness to upper layers that definitely know that they
2492 * are built on top of the ITS.
2493 */
2494 dev_id = info->scratchpad[0].ul;
2495
2496 msi_info = msi_get_domain_info(domain);
2497 its = msi_info->data;
2498
Marc Zyngier20b3d542016-12-20 15:23:22 +00002499 if (!gic_rdists->has_direct_lpi &&
2500 vpe_proxy.dev &&
2501 vpe_proxy.dev->its == its &&
2502 dev_id == vpe_proxy.dev->device_id) {
2503 /* Bad luck. Get yourself a better implementation */
2504 WARN_ONCE(1, "DevId %x clashes with GICv4 VPE proxy device\n",
2505 dev_id);
2506 return -EINVAL;
2507 }
2508
Marc Zyngier9791ec72019-01-29 10:02:33 +00002509 mutex_lock(&its->dev_alloc_lock);
Marc Zyngierf1304202015-07-28 14:46:18 +01002510 its_dev = its_find_device(its, dev_id);
Marc Zyngiere8137f42015-03-06 16:37:42 +00002511 if (its_dev) {
2512 /*
2513 * We already have seen this ID, probably through
2514 * another alias (PCI bridge of some sort). No need to
2515 * create the device.
2516 */
Marc Zyngier9791ec72019-01-29 10:02:33 +00002517 its_dev->shared = true;
Marc Zyngierf1304202015-07-28 14:46:18 +01002518 pr_debug("Reusing ITT for devID %x\n", dev_id);
Marc Zyngiere8137f42015-03-06 16:37:42 +00002519 goto out;
2520 }
Marc Zyngierb48ac832014-11-24 14:35:16 +00002521
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002522 its_dev = its_create_device(its, dev_id, nvec, true);
Marc Zyngier9791ec72019-01-29 10:02:33 +00002523 if (!its_dev) {
2524 err = -ENOMEM;
2525 goto out;
2526 }
Marc Zyngierb48ac832014-11-24 14:35:16 +00002527
Marc Zyngierf1304202015-07-28 14:46:18 +01002528 pr_debug("ITT %d entries, %d bits\n", nvec, ilog2(nvec));
Marc Zyngiere8137f42015-03-06 16:37:42 +00002529out:
Marc Zyngier9791ec72019-01-29 10:02:33 +00002530 mutex_unlock(&its->dev_alloc_lock);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002531 info->scratchpad[0].ptr = its_dev;
Marc Zyngier9791ec72019-01-29 10:02:33 +00002532 return err;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002533}
2534
Marc Zyngier54456db2015-07-28 14:46:21 +01002535static struct msi_domain_ops its_msi_domain_ops = {
2536 .msi_prepare = its_msi_prepare,
2537};
2538
Marc Zyngierb48ac832014-11-24 14:35:16 +00002539static int its_irq_gic_domain_alloc(struct irq_domain *domain,
2540 unsigned int virq,
2541 irq_hw_number_t hwirq)
2542{
Marc Zyngierf833f572015-10-13 12:51:33 +01002543 struct irq_fwspec fwspec;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002544
Marc Zyngierf833f572015-10-13 12:51:33 +01002545 if (irq_domain_get_of_node(domain->parent)) {
2546 fwspec.fwnode = domain->parent->fwnode;
2547 fwspec.param_count = 3;
2548 fwspec.param[0] = GIC_IRQ_TYPE_LPI;
2549 fwspec.param[1] = hwirq;
2550 fwspec.param[2] = IRQ_TYPE_EDGE_RISING;
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02002551 } else if (is_fwnode_irqchip(domain->parent->fwnode)) {
2552 fwspec.fwnode = domain->parent->fwnode;
2553 fwspec.param_count = 2;
2554 fwspec.param[0] = hwirq;
2555 fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
Marc Zyngierf833f572015-10-13 12:51:33 +01002556 } else {
2557 return -EINVAL;
2558 }
Marc Zyngierb48ac832014-11-24 14:35:16 +00002559
Marc Zyngierf833f572015-10-13 12:51:33 +01002560 return irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002561}
2562
2563static int its_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
2564 unsigned int nr_irqs, void *args)
2565{
2566 msi_alloc_info_t *info = args;
2567 struct its_device *its_dev = info->scratchpad[0].ptr;
Julien Grall35ae7df2019-05-01 14:58:21 +01002568 struct its_node *its = its_dev->its;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002569 irq_hw_number_t hwirq;
2570 int err;
2571 int i;
2572
Marc Zyngier8208d172019-01-18 14:08:59 +00002573 err = its_alloc_device_irq(its_dev, nr_irqs, &hwirq);
2574 if (err)
2575 return err;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002576
Julien Grall35ae7df2019-05-01 14:58:21 +01002577 err = iommu_dma_prepare_msi(info->desc, its->get_msi_base(its_dev));
2578 if (err)
2579 return err;
2580
Marc Zyngier8208d172019-01-18 14:08:59 +00002581 for (i = 0; i < nr_irqs; i++) {
2582 err = its_irq_gic_domain_alloc(domain, virq + i, hwirq + i);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002583 if (err)
2584 return err;
2585
2586 irq_domain_set_hwirq_and_chip(domain, virq + i,
Marc Zyngier8208d172019-01-18 14:08:59 +00002587 hwirq + i, &its_irq_chip, its_dev);
Marc Zyngier0d224d32017-08-18 09:39:18 +01002588 irqd_set_single_target(irq_desc_get_irq_data(irq_to_desc(virq + i)));
Marc Zyngierf1304202015-07-28 14:46:18 +01002589 pr_debug("ID:%d pID:%d vID:%d\n",
Marc Zyngier8208d172019-01-18 14:08:59 +00002590 (int)(hwirq + i - its_dev->event_map.lpi_base),
2591 (int)(hwirq + i), virq + i);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002592 }
2593
2594 return 0;
2595}
2596
Thomas Gleixner72491642017-09-13 23:29:10 +02002597static int its_irq_domain_activate(struct irq_domain *domain,
Thomas Gleixner702cb0a2017-12-29 16:59:06 +01002598 struct irq_data *d, bool reserve)
Marc Zyngieraca268d2014-12-12 10:51:23 +00002599{
2600 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
2601 u32 event = its_get_event_id(d);
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02002602 const struct cpumask *cpu_mask = cpu_online_mask;
Marc Zyngier0d224d32017-08-18 09:39:18 +01002603 int cpu;
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02002604
2605 /* get the cpu_mask of local node */
2606 if (its_dev->its->numa_node >= 0)
2607 cpu_mask = cpumask_of_node(its_dev->its->numa_node);
Marc Zyngieraca268d2014-12-12 10:51:23 +00002608
Marc Zyngier591e5be2015-07-17 10:46:42 +01002609 /* Bind the LPI to the first possible CPU */
Yang Yingliangc1797b12018-06-22 10:52:51 +01002610 cpu = cpumask_first_and(cpu_mask, cpu_online_mask);
2611 if (cpu >= nr_cpu_ids) {
2612 if (its_dev->its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144)
2613 return -EINVAL;
2614
2615 cpu = cpumask_first(cpu_online_mask);
2616 }
2617
Marc Zyngier0d224d32017-08-18 09:39:18 +01002618 its_dev->event_map.col_map[event] = cpu;
2619 irq_data_update_effective_affinity(d, cpumask_of(cpu));
Marc Zyngier591e5be2015-07-17 10:46:42 +01002620
Marc Zyngieraca268d2014-12-12 10:51:23 +00002621 /* Map the GIC IRQ and event to the device */
Marc Zyngier6a25ad32016-12-20 15:52:26 +00002622 its_send_mapti(its_dev, d->hwirq, event);
Thomas Gleixner72491642017-09-13 23:29:10 +02002623 return 0;
Marc Zyngieraca268d2014-12-12 10:51:23 +00002624}
2625
2626static void its_irq_domain_deactivate(struct irq_domain *domain,
2627 struct irq_data *d)
2628{
2629 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
2630 u32 event = its_get_event_id(d);
2631
2632 /* Stop the delivery of interrupts */
2633 its_send_discard(its_dev, event);
2634}
2635
Marc Zyngierb48ac832014-11-24 14:35:16 +00002636static void its_irq_domain_free(struct irq_domain *domain, unsigned int virq,
2637 unsigned int nr_irqs)
2638{
2639 struct irq_data *d = irq_domain_get_irq_data(domain, virq);
2640 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
Marc Zyngier9791ec72019-01-29 10:02:33 +00002641 struct its_node *its = its_dev->its;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002642 int i;
2643
Marc Zyngierc9c96e32019-09-05 14:56:47 +01002644 bitmap_release_region(its_dev->event_map.lpi_map,
2645 its_get_event_id(irq_domain_get_irq_data(domain, virq)),
2646 get_count_order(nr_irqs));
2647
Marc Zyngierb48ac832014-11-24 14:35:16 +00002648 for (i = 0; i < nr_irqs; i++) {
2649 struct irq_data *data = irq_domain_get_irq_data(domain,
2650 virq + i);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002651 /* Nuke the entry in the domain */
Marc Zyngier2da39942014-12-12 10:51:22 +00002652 irq_domain_reset_irq_data(data);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002653 }
2654
Marc Zyngier9791ec72019-01-29 10:02:33 +00002655 mutex_lock(&its->dev_alloc_lock);
2656
2657 /*
2658 * If all interrupts have been freed, start mopping the
2659 * floor. This is conditionned on the device not being shared.
2660 */
2661 if (!its_dev->shared &&
2662 bitmap_empty(its_dev->event_map.lpi_map,
Marc Zyngier591e5be2015-07-17 10:46:42 +01002663 its_dev->event_map.nr_lpis)) {
Marc Zyngier38dd7c42018-05-27 17:03:03 +01002664 its_lpi_free(its_dev->event_map.lpi_map,
2665 its_dev->event_map.lpi_base,
2666 its_dev->event_map.nr_lpis);
Marc Zyngiercf2be8b2016-12-19 18:49:59 +00002667 kfree(its_dev->event_map.col_map);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002668
2669 /* Unmap device/itt */
2670 its_send_mapd(its_dev, 0);
2671 its_free_device(its_dev);
2672 }
2673
Marc Zyngier9791ec72019-01-29 10:02:33 +00002674 mutex_unlock(&its->dev_alloc_lock);
2675
Marc Zyngierb48ac832014-11-24 14:35:16 +00002676 irq_domain_free_irqs_parent(domain, virq, nr_irqs);
2677}
2678
2679static const struct irq_domain_ops its_domain_ops = {
2680 .alloc = its_irq_domain_alloc,
2681 .free = its_irq_domain_free,
Marc Zyngieraca268d2014-12-12 10:51:23 +00002682 .activate = its_irq_domain_activate,
2683 .deactivate = its_irq_domain_deactivate,
Marc Zyngierb48ac832014-11-24 14:35:16 +00002684};
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002685
Marc Zyngier20b3d542016-12-20 15:23:22 +00002686/*
2687 * This is insane.
2688 *
2689 * If a GICv4 doesn't implement Direct LPIs (which is extremely
2690 * likely), the only way to perform an invalidate is to use a fake
2691 * device to issue an INV command, implying that the LPI has first
2692 * been mapped to some event on that device. Since this is not exactly
2693 * cheap, we try to keep that mapping around as long as possible, and
2694 * only issue an UNMAP if we're short on available slots.
2695 *
2696 * Broken by design(tm).
2697 */
2698static void its_vpe_db_proxy_unmap_locked(struct its_vpe *vpe)
2699{
2700 /* Already unmapped? */
2701 if (vpe->vpe_proxy_event == -1)
2702 return;
2703
2704 its_send_discard(vpe_proxy.dev, vpe->vpe_proxy_event);
2705 vpe_proxy.vpes[vpe->vpe_proxy_event] = NULL;
2706
2707 /*
2708 * We don't track empty slots at all, so let's move the
2709 * next_victim pointer if we can quickly reuse that slot
2710 * instead of nuking an existing entry. Not clear that this is
2711 * always a win though, and this might just generate a ripple
2712 * effect... Let's just hope VPEs don't migrate too often.
2713 */
2714 if (vpe_proxy.vpes[vpe_proxy.next_victim])
2715 vpe_proxy.next_victim = vpe->vpe_proxy_event;
2716
2717 vpe->vpe_proxy_event = -1;
2718}
2719
2720static void its_vpe_db_proxy_unmap(struct its_vpe *vpe)
2721{
2722 if (!gic_rdists->has_direct_lpi) {
2723 unsigned long flags;
2724
2725 raw_spin_lock_irqsave(&vpe_proxy.lock, flags);
2726 its_vpe_db_proxy_unmap_locked(vpe);
2727 raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags);
2728 }
2729}
2730
2731static void its_vpe_db_proxy_map_locked(struct its_vpe *vpe)
2732{
2733 /* Already mapped? */
2734 if (vpe->vpe_proxy_event != -1)
2735 return;
2736
2737 /* This slot was already allocated. Kick the other VPE out. */
2738 if (vpe_proxy.vpes[vpe_proxy.next_victim])
2739 its_vpe_db_proxy_unmap_locked(vpe_proxy.vpes[vpe_proxy.next_victim]);
2740
2741 /* Map the new VPE instead */
2742 vpe_proxy.vpes[vpe_proxy.next_victim] = vpe;
2743 vpe->vpe_proxy_event = vpe_proxy.next_victim;
2744 vpe_proxy.next_victim = (vpe_proxy.next_victim + 1) % vpe_proxy.dev->nr_ites;
2745
2746 vpe_proxy.dev->event_map.col_map[vpe->vpe_proxy_event] = vpe->col_idx;
2747 its_send_mapti(vpe_proxy.dev, vpe->vpe_db_lpi, vpe->vpe_proxy_event);
2748}
2749
Marc Zyngier958b90d2017-08-18 16:14:17 +01002750static void its_vpe_db_proxy_move(struct its_vpe *vpe, int from, int to)
2751{
2752 unsigned long flags;
2753 struct its_collection *target_col;
2754
2755 if (gic_rdists->has_direct_lpi) {
2756 void __iomem *rdbase;
2757
2758 rdbase = per_cpu_ptr(gic_rdists->rdist, from)->rd_base;
2759 gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_CLRLPIR);
2760 while (gic_read_lpir(rdbase + GICR_SYNCR) & 1)
2761 cpu_relax();
2762
2763 return;
2764 }
2765
2766 raw_spin_lock_irqsave(&vpe_proxy.lock, flags);
2767
2768 its_vpe_db_proxy_map_locked(vpe);
2769
2770 target_col = &vpe_proxy.dev->its->collections[to];
2771 its_send_movi(vpe_proxy.dev, target_col, vpe->vpe_proxy_event);
2772 vpe_proxy.dev->event_map.col_map[vpe->vpe_proxy_event] = to;
2773
2774 raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags);
2775}
2776
Marc Zyngier3171a472016-12-20 15:17:28 +00002777static int its_vpe_set_affinity(struct irq_data *d,
2778 const struct cpumask *mask_val,
2779 bool force)
2780{
2781 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
2782 int cpu = cpumask_first(mask_val);
2783
2784 /*
2785 * Changing affinity is mega expensive, so let's be as lazy as
Marc Zyngier20b3d542016-12-20 15:23:22 +00002786 * we can and only do it if we really have to. Also, if mapped
Marc Zyngier958b90d2017-08-18 16:14:17 +01002787 * into the proxy device, we need to move the doorbell
2788 * interrupt to its new location.
Marc Zyngier3171a472016-12-20 15:17:28 +00002789 */
2790 if (vpe->col_idx != cpu) {
Marc Zyngier958b90d2017-08-18 16:14:17 +01002791 int from = vpe->col_idx;
2792
Marc Zyngier3171a472016-12-20 15:17:28 +00002793 vpe->col_idx = cpu;
2794 its_send_vmovp(vpe);
Marc Zyngier958b90d2017-08-18 16:14:17 +01002795 its_vpe_db_proxy_move(vpe, from, cpu);
Marc Zyngier3171a472016-12-20 15:17:28 +00002796 }
2797
Marc Zyngier44c4c252017-10-19 10:11:34 +01002798 irq_data_update_effective_affinity(d, cpumask_of(cpu));
2799
Marc Zyngier3171a472016-12-20 15:17:28 +00002800 return IRQ_SET_MASK_OK_DONE;
2801}
2802
Marc Zyngiere643d802016-12-20 15:09:31 +00002803static void its_vpe_schedule(struct its_vpe *vpe)
2804{
Robin Murphy50c33092018-02-16 16:57:56 +00002805 void __iomem *vlpi_base = gic_data_rdist_vlpi_base();
Marc Zyngiere643d802016-12-20 15:09:31 +00002806 u64 val;
2807
2808 /* Schedule the VPE */
2809 val = virt_to_phys(page_address(vpe->its_vm->vprop_page)) &
2810 GENMASK_ULL(51, 12);
2811 val |= (LPI_NRBITS - 1) & GICR_VPROPBASER_IDBITS_MASK;
2812 val |= GICR_VPROPBASER_RaWb;
2813 val |= GICR_VPROPBASER_InnerShareable;
2814 gits_write_vpropbaser(val, vlpi_base + GICR_VPROPBASER);
2815
2816 val = virt_to_phys(page_address(vpe->vpt_page)) &
2817 GENMASK_ULL(51, 16);
2818 val |= GICR_VPENDBASER_RaWaWb;
2819 val |= GICR_VPENDBASER_NonShareable;
2820 /*
2821 * There is no good way of finding out if the pending table is
2822 * empty as we can race against the doorbell interrupt very
2823 * easily. So in the end, vpe->pending_last is only an
2824 * indication that the vcpu has something pending, not one
2825 * that the pending table is empty. A good implementation
2826 * would be able to read its coarse map pretty quickly anyway,
2827 * making this a tolerable issue.
2828 */
2829 val |= GICR_VPENDBASER_PendingLast;
2830 val |= vpe->idai ? GICR_VPENDBASER_IDAI : 0;
2831 val |= GICR_VPENDBASER_Valid;
2832 gits_write_vpendbaser(val, vlpi_base + GICR_VPENDBASER);
2833}
2834
2835static void its_vpe_deschedule(struct its_vpe *vpe)
2836{
Robin Murphy50c33092018-02-16 16:57:56 +00002837 void __iomem *vlpi_base = gic_data_rdist_vlpi_base();
Marc Zyngiere643d802016-12-20 15:09:31 +00002838 u64 val;
2839
Heyi Guo64794502019-01-24 21:37:08 +08002840 val = its_clear_vpend_valid(vlpi_base);
Marc Zyngiere643d802016-12-20 15:09:31 +00002841
Heyi Guo64794502019-01-24 21:37:08 +08002842 if (unlikely(val & GICR_VPENDBASER_Dirty)) {
Marc Zyngiere643d802016-12-20 15:09:31 +00002843 pr_err_ratelimited("ITS virtual pending table not cleaning\n");
2844 vpe->idai = false;
2845 vpe->pending_last = true;
2846 } else {
2847 vpe->idai = !!(val & GICR_VPENDBASER_IDAI);
2848 vpe->pending_last = !!(val & GICR_VPENDBASER_PendingLast);
2849 }
2850}
2851
Marc Zyngier40619a22017-10-08 15:16:09 +01002852static void its_vpe_invall(struct its_vpe *vpe)
2853{
2854 struct its_node *its;
2855
2856 list_for_each_entry(its, &its_nodes, entry) {
2857 if (!its->is_v4)
2858 continue;
2859
Marc Zyngier2247e1b2017-10-08 18:50:36 +01002860 if (its_list_map && !vpe->its_vm->vlpi_count[its->list_nr])
2861 continue;
2862
Marc Zyngier3c1ccee2017-10-09 13:17:43 +01002863 /*
2864 * Sending a VINVALL to a single ITS is enough, as all
2865 * we need is to reach the redistributors.
2866 */
Marc Zyngier40619a22017-10-08 15:16:09 +01002867 its_send_vinvall(its, vpe);
Marc Zyngier3c1ccee2017-10-09 13:17:43 +01002868 return;
Marc Zyngier40619a22017-10-08 15:16:09 +01002869 }
2870}
2871
Marc Zyngiere643d802016-12-20 15:09:31 +00002872static int its_vpe_set_vcpu_affinity(struct irq_data *d, void *vcpu_info)
2873{
2874 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
2875 struct its_cmd_info *info = vcpu_info;
2876
2877 switch (info->cmd_type) {
2878 case SCHEDULE_VPE:
2879 its_vpe_schedule(vpe);
2880 return 0;
2881
2882 case DESCHEDULE_VPE:
2883 its_vpe_deschedule(vpe);
2884 return 0;
2885
Marc Zyngier5e2f7642016-12-20 15:10:50 +00002886 case INVALL_VPE:
Marc Zyngier40619a22017-10-08 15:16:09 +01002887 its_vpe_invall(vpe);
Marc Zyngier5e2f7642016-12-20 15:10:50 +00002888 return 0;
2889
Marc Zyngiere643d802016-12-20 15:09:31 +00002890 default:
2891 return -EINVAL;
2892 }
2893}
2894
Marc Zyngier20b3d542016-12-20 15:23:22 +00002895static void its_vpe_send_cmd(struct its_vpe *vpe,
2896 void (*cmd)(struct its_device *, u32))
2897{
2898 unsigned long flags;
2899
2900 raw_spin_lock_irqsave(&vpe_proxy.lock, flags);
2901
2902 its_vpe_db_proxy_map_locked(vpe);
2903 cmd(vpe_proxy.dev, vpe->vpe_proxy_event);
2904
2905 raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags);
2906}
2907
Marc Zyngierf6a91da2016-12-20 15:20:38 +00002908static void its_vpe_send_inv(struct irq_data *d)
2909{
2910 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
Marc Zyngierf6a91da2016-12-20 15:20:38 +00002911
Marc Zyngier20b3d542016-12-20 15:23:22 +00002912 if (gic_rdists->has_direct_lpi) {
2913 void __iomem *rdbase;
2914
2915 rdbase = per_cpu_ptr(gic_rdists->rdist, vpe->col_idx)->rd_base;
2916 gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_INVLPIR);
2917 while (gic_read_lpir(rdbase + GICR_SYNCR) & 1)
2918 cpu_relax();
2919 } else {
2920 its_vpe_send_cmd(vpe, its_send_inv);
2921 }
Marc Zyngierf6a91da2016-12-20 15:20:38 +00002922}
2923
2924static void its_vpe_mask_irq(struct irq_data *d)
2925{
2926 /*
2927 * We need to unmask the LPI, which is described by the parent
2928 * irq_data. Instead of calling into the parent (which won't
2929 * exactly do the right thing, let's simply use the
2930 * parent_data pointer. Yes, I'm naughty.
2931 */
2932 lpi_write_config(d->parent_data, LPI_PROP_ENABLED, 0);
2933 its_vpe_send_inv(d);
2934}
2935
2936static void its_vpe_unmask_irq(struct irq_data *d)
2937{
2938 /* Same hack as above... */
2939 lpi_write_config(d->parent_data, 0, LPI_PROP_ENABLED);
2940 its_vpe_send_inv(d);
2941}
2942
Marc Zyngiere57a3e282017-07-31 14:47:24 +01002943static int its_vpe_set_irqchip_state(struct irq_data *d,
2944 enum irqchip_irq_state which,
2945 bool state)
2946{
2947 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
2948
2949 if (which != IRQCHIP_STATE_PENDING)
2950 return -EINVAL;
2951
2952 if (gic_rdists->has_direct_lpi) {
2953 void __iomem *rdbase;
2954
2955 rdbase = per_cpu_ptr(gic_rdists->rdist, vpe->col_idx)->rd_base;
2956 if (state) {
2957 gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_SETLPIR);
2958 } else {
2959 gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_CLRLPIR);
2960 while (gic_read_lpir(rdbase + GICR_SYNCR) & 1)
2961 cpu_relax();
2962 }
2963 } else {
2964 if (state)
2965 its_vpe_send_cmd(vpe, its_send_int);
2966 else
2967 its_vpe_send_cmd(vpe, its_send_clear);
2968 }
2969
2970 return 0;
2971}
2972
Marc Zyngier8fff27a2016-12-20 13:41:55 +00002973static struct irq_chip its_vpe_irq_chip = {
2974 .name = "GICv4-vpe",
Marc Zyngierf6a91da2016-12-20 15:20:38 +00002975 .irq_mask = its_vpe_mask_irq,
2976 .irq_unmask = its_vpe_unmask_irq,
2977 .irq_eoi = irq_chip_eoi_parent,
Marc Zyngier3171a472016-12-20 15:17:28 +00002978 .irq_set_affinity = its_vpe_set_affinity,
Marc Zyngiere57a3e282017-07-31 14:47:24 +01002979 .irq_set_irqchip_state = its_vpe_set_irqchip_state,
Marc Zyngiere643d802016-12-20 15:09:31 +00002980 .irq_set_vcpu_affinity = its_vpe_set_vcpu_affinity,
Marc Zyngier8fff27a2016-12-20 13:41:55 +00002981};
2982
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002983static int its_vpe_id_alloc(void)
2984{
Shanker Donthineni32bd44d2017-10-07 15:43:48 -05002985 return ida_simple_get(&its_vpeid_ida, 0, ITS_MAX_VPEID, GFP_KERNEL);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002986}
2987
2988static void its_vpe_id_free(u16 id)
2989{
2990 ida_simple_remove(&its_vpeid_ida, id);
2991}
2992
2993static int its_vpe_init(struct its_vpe *vpe)
2994{
2995 struct page *vpt_page;
2996 int vpe_id;
2997
2998 /* Allocate vpe_id */
2999 vpe_id = its_vpe_id_alloc();
3000 if (vpe_id < 0)
3001 return vpe_id;
3002
3003 /* Allocate VPT */
3004 vpt_page = its_allocate_pending_table(GFP_KERNEL);
3005 if (!vpt_page) {
3006 its_vpe_id_free(vpe_id);
3007 return -ENOMEM;
3008 }
3009
3010 if (!its_alloc_vpe_table(vpe_id)) {
3011 its_vpe_id_free(vpe_id);
Nianyao Tang34f8eb92019-07-26 17:32:57 +08003012 its_free_pending_table(vpt_page);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003013 return -ENOMEM;
3014 }
3015
3016 vpe->vpe_id = vpe_id;
3017 vpe->vpt_page = vpt_page;
Marc Zyngier20b3d542016-12-20 15:23:22 +00003018 vpe->vpe_proxy_event = -1;
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003019
3020 return 0;
3021}
3022
3023static void its_vpe_teardown(struct its_vpe *vpe)
3024{
Marc Zyngier20b3d542016-12-20 15:23:22 +00003025 its_vpe_db_proxy_unmap(vpe);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003026 its_vpe_id_free(vpe->vpe_id);
3027 its_free_pending_table(vpe->vpt_page);
3028}
3029
3030static void its_vpe_irq_domain_free(struct irq_domain *domain,
3031 unsigned int virq,
3032 unsigned int nr_irqs)
3033{
3034 struct its_vm *vm = domain->host_data;
3035 int i;
3036
3037 irq_domain_free_irqs_parent(domain, virq, nr_irqs);
3038
3039 for (i = 0; i < nr_irqs; i++) {
3040 struct irq_data *data = irq_domain_get_irq_data(domain,
3041 virq + i);
3042 struct its_vpe *vpe = irq_data_get_irq_chip_data(data);
3043
3044 BUG_ON(vm != vpe->its_vm);
3045
3046 clear_bit(data->hwirq, vm->db_bitmap);
3047 its_vpe_teardown(vpe);
3048 irq_domain_reset_irq_data(data);
3049 }
3050
3051 if (bitmap_empty(vm->db_bitmap, vm->nr_db_lpis)) {
Marc Zyngier38dd7c42018-05-27 17:03:03 +01003052 its_lpi_free(vm->db_bitmap, vm->db_lpi_base, vm->nr_db_lpis);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003053 its_free_prop_table(vm->vprop_page);
3054 }
3055}
3056
3057static int its_vpe_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
3058 unsigned int nr_irqs, void *args)
3059{
3060 struct its_vm *vm = args;
3061 unsigned long *bitmap;
3062 struct page *vprop_page;
3063 int base, nr_ids, i, err = 0;
3064
3065 BUG_ON(!vm);
3066
Marc Zyngier38dd7c42018-05-27 17:03:03 +01003067 bitmap = its_lpi_alloc(roundup_pow_of_two(nr_irqs), &base, &nr_ids);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003068 if (!bitmap)
3069 return -ENOMEM;
3070
3071 if (nr_ids < nr_irqs) {
Marc Zyngier38dd7c42018-05-27 17:03:03 +01003072 its_lpi_free(bitmap, base, nr_ids);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003073 return -ENOMEM;
3074 }
3075
3076 vprop_page = its_allocate_prop_table(GFP_KERNEL);
3077 if (!vprop_page) {
Marc Zyngier38dd7c42018-05-27 17:03:03 +01003078 its_lpi_free(bitmap, base, nr_ids);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003079 return -ENOMEM;
3080 }
3081
3082 vm->db_bitmap = bitmap;
3083 vm->db_lpi_base = base;
3084 vm->nr_db_lpis = nr_ids;
3085 vm->vprop_page = vprop_page;
3086
3087 for (i = 0; i < nr_irqs; i++) {
3088 vm->vpes[i]->vpe_db_lpi = base + i;
3089 err = its_vpe_init(vm->vpes[i]);
3090 if (err)
3091 break;
3092 err = its_irq_gic_domain_alloc(domain, virq + i,
3093 vm->vpes[i]->vpe_db_lpi);
3094 if (err)
3095 break;
3096 irq_domain_set_hwirq_and_chip(domain, virq + i, i,
3097 &its_vpe_irq_chip, vm->vpes[i]);
3098 set_bit(i, bitmap);
3099 }
3100
3101 if (err) {
3102 if (i > 0)
3103 its_vpe_irq_domain_free(domain, virq, i - 1);
3104
Marc Zyngier38dd7c42018-05-27 17:03:03 +01003105 its_lpi_free(bitmap, base, nr_ids);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003106 its_free_prop_table(vprop_page);
3107 }
3108
3109 return err;
3110}
3111
Thomas Gleixner72491642017-09-13 23:29:10 +02003112static int its_vpe_irq_domain_activate(struct irq_domain *domain,
Thomas Gleixner702cb0a2017-12-29 16:59:06 +01003113 struct irq_data *d, bool reserve)
Marc Zyngiereb781922016-12-20 14:47:05 +00003114{
3115 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
Marc Zyngier40619a22017-10-08 15:16:09 +01003116 struct its_node *its;
Marc Zyngiereb781922016-12-20 14:47:05 +00003117
Marc Zyngier2247e1b2017-10-08 18:50:36 +01003118 /* If we use the list map, we issue VMAPP on demand... */
3119 if (its_list_map)
Marc Zyngier6ef930f2017-11-07 10:04:38 +00003120 return 0;
Marc Zyngiereb781922016-12-20 14:47:05 +00003121
3122 /* Map the VPE to the first possible CPU */
3123 vpe->col_idx = cpumask_first(cpu_online_mask);
Marc Zyngier40619a22017-10-08 15:16:09 +01003124
3125 list_for_each_entry(its, &its_nodes, entry) {
3126 if (!its->is_v4)
3127 continue;
3128
Marc Zyngier75fd9512017-10-08 18:46:39 +01003129 its_send_vmapp(its, vpe, true);
Marc Zyngier40619a22017-10-08 15:16:09 +01003130 its_send_vinvall(its, vpe);
3131 }
3132
Marc Zyngier44c4c252017-10-19 10:11:34 +01003133 irq_data_update_effective_affinity(d, cpumask_of(vpe->col_idx));
3134
Thomas Gleixner72491642017-09-13 23:29:10 +02003135 return 0;
Marc Zyngiereb781922016-12-20 14:47:05 +00003136}
3137
3138static void its_vpe_irq_domain_deactivate(struct irq_domain *domain,
3139 struct irq_data *d)
3140{
3141 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
Marc Zyngier75fd9512017-10-08 18:46:39 +01003142 struct its_node *its;
Marc Zyngiereb781922016-12-20 14:47:05 +00003143
Marc Zyngier2247e1b2017-10-08 18:50:36 +01003144 /*
3145 * If we use the list map, we unmap the VPE once no VLPIs are
3146 * associated with the VM.
3147 */
3148 if (its_list_map)
3149 return;
3150
Marc Zyngier75fd9512017-10-08 18:46:39 +01003151 list_for_each_entry(its, &its_nodes, entry) {
3152 if (!its->is_v4)
3153 continue;
3154
3155 its_send_vmapp(its, vpe, false);
3156 }
Marc Zyngiereb781922016-12-20 14:47:05 +00003157}
3158
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003159static const struct irq_domain_ops its_vpe_domain_ops = {
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00003160 .alloc = its_vpe_irq_domain_alloc,
3161 .free = its_vpe_irq_domain_free,
Marc Zyngiereb781922016-12-20 14:47:05 +00003162 .activate = its_vpe_irq_domain_activate,
3163 .deactivate = its_vpe_irq_domain_deactivate,
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003164};
3165
Yun Wu4559fbb2015-03-06 16:37:50 +00003166static int its_force_quiescent(void __iomem *base)
3167{
3168 u32 count = 1000000; /* 1s */
3169 u32 val;
3170
3171 val = readl_relaxed(base + GITS_CTLR);
David Daney7611da82016-08-18 15:41:58 -07003172 /*
3173 * GIC architecture specification requires the ITS to be both
3174 * disabled and quiescent for writes to GITS_BASER<n> or
3175 * GITS_CBASER to not have UNPREDICTABLE results.
3176 */
3177 if ((val & GITS_CTLR_QUIESCENT) && !(val & GITS_CTLR_ENABLE))
Yun Wu4559fbb2015-03-06 16:37:50 +00003178 return 0;
3179
3180 /* Disable the generation of all interrupts to this ITS */
Marc Zyngierd51c4b42017-06-27 21:24:25 +01003181 val &= ~(GITS_CTLR_ENABLE | GITS_CTLR_ImDe);
Yun Wu4559fbb2015-03-06 16:37:50 +00003182 writel_relaxed(val, base + GITS_CTLR);
3183
3184 /* Poll GITS_CTLR and wait until ITS becomes quiescent */
3185 while (1) {
3186 val = readl_relaxed(base + GITS_CTLR);
3187 if (val & GITS_CTLR_QUIESCENT)
3188 return 0;
3189
3190 count--;
3191 if (!count)
3192 return -EBUSY;
3193
3194 cpu_relax();
3195 udelay(1);
3196 }
3197}
3198
Ard Biesheuvel9d111d42017-10-17 17:55:55 +01003199static bool __maybe_unused its_enable_quirk_cavium_22375(void *data)
Robert Richter94100972015-09-21 22:58:38 +02003200{
3201 struct its_node *its = data;
3202
Ard Biesheuvelfa150012017-10-17 17:55:54 +01003203 /* erratum 22375: only alloc 8MB table size */
3204 its->device_ids = 0x14; /* 20 bits, 8MB */
Robert Richter94100972015-09-21 22:58:38 +02003205 its->flags |= ITS_FLAGS_WORKAROUND_CAVIUM_22375;
Ard Biesheuvel9d111d42017-10-17 17:55:55 +01003206
3207 return true;
Robert Richter94100972015-09-21 22:58:38 +02003208}
3209
Ard Biesheuvel9d111d42017-10-17 17:55:55 +01003210static bool __maybe_unused its_enable_quirk_cavium_23144(void *data)
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02003211{
3212 struct its_node *its = data;
3213
3214 its->flags |= ITS_FLAGS_WORKAROUND_CAVIUM_23144;
Ard Biesheuvel9d111d42017-10-17 17:55:55 +01003215
3216 return true;
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02003217}
3218
Ard Biesheuvel9d111d42017-10-17 17:55:55 +01003219static bool __maybe_unused its_enable_quirk_qdf2400_e0065(void *data)
Shanker Donthineni90922a22017-03-07 08:20:38 -06003220{
3221 struct its_node *its = data;
3222
3223 /* On QDF2400, the size of the ITE is 16Bytes */
3224 its->ite_size = 16;
Ard Biesheuvel9d111d42017-10-17 17:55:55 +01003225
3226 return true;
Shanker Donthineni90922a22017-03-07 08:20:38 -06003227}
3228
Ard Biesheuvel558b0162017-10-17 17:55:56 +01003229static u64 its_irq_get_msi_base_pre_its(struct its_device *its_dev)
3230{
3231 struct its_node *its = its_dev->its;
3232
3233 /*
3234 * The Socionext Synquacer SoC has a so-called 'pre-ITS',
3235 * which maps 32-bit writes targeted at a separate window of
3236 * size '4 << device_id_bits' onto writes to GITS_TRANSLATER
3237 * with device ID taken from bits [device_id_bits + 1:2] of
3238 * the window offset.
3239 */
3240 return its->pre_its_base + (its_dev->device_id << 2);
3241}
3242
3243static bool __maybe_unused its_enable_quirk_socionext_synquacer(void *data)
3244{
3245 struct its_node *its = data;
3246 u32 pre_its_window[2];
3247 u32 ids;
3248
3249 if (!fwnode_property_read_u32_array(its->fwnode_handle,
3250 "socionext,synquacer-pre-its",
3251 pre_its_window,
3252 ARRAY_SIZE(pre_its_window))) {
3253
3254 its->pre_its_base = pre_its_window[0];
3255 its->get_msi_base = its_irq_get_msi_base_pre_its;
3256
3257 ids = ilog2(pre_its_window[1]) - 2;
3258 if (its->device_ids > ids)
3259 its->device_ids = ids;
3260
3261 /* the pre-ITS breaks isolation, so disable MSI remapping */
3262 its->msi_domain_flags &= ~IRQ_DOMAIN_FLAG_MSI_REMAP;
3263 return true;
3264 }
3265 return false;
3266}
3267
Marc Zyngier5c9a8822017-07-28 21:20:37 +01003268static bool __maybe_unused its_enable_quirk_hip07_161600802(void *data)
3269{
3270 struct its_node *its = data;
3271
3272 /*
3273 * Hip07 insists on using the wrong address for the VLPI
3274 * page. Trick it into doing the right thing...
3275 */
3276 its->vlpi_redist_offset = SZ_128K;
3277 return true;
Marc Zyngiercc2d3212014-11-24 14:35:11 +00003278}
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003279
Robert Richter67510cc2015-09-21 22:58:37 +02003280static const struct gic_quirk its_quirks[] = {
Robert Richter94100972015-09-21 22:58:38 +02003281#ifdef CONFIG_CAVIUM_ERRATUM_22375
3282 {
3283 .desc = "ITS: Cavium errata 22375, 24313",
3284 .iidr = 0xa100034c, /* ThunderX pass 1.x */
3285 .mask = 0xffff0fff,
3286 .init = its_enable_quirk_cavium_22375,
3287 },
3288#endif
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02003289#ifdef CONFIG_CAVIUM_ERRATUM_23144
3290 {
3291 .desc = "ITS: Cavium erratum 23144",
3292 .iidr = 0xa100034c, /* ThunderX pass 1.x */
3293 .mask = 0xffff0fff,
3294 .init = its_enable_quirk_cavium_23144,
3295 },
3296#endif
Shanker Donthineni90922a22017-03-07 08:20:38 -06003297#ifdef CONFIG_QCOM_QDF2400_ERRATUM_0065
3298 {
3299 .desc = "ITS: QDF2400 erratum 0065",
3300 .iidr = 0x00001070, /* QDF2400 ITS rev 1.x */
3301 .mask = 0xffffffff,
3302 .init = its_enable_quirk_qdf2400_e0065,
3303 },
3304#endif
Ard Biesheuvel558b0162017-10-17 17:55:56 +01003305#ifdef CONFIG_SOCIONEXT_SYNQUACER_PREITS
3306 {
3307 /*
3308 * The Socionext Synquacer SoC incorporates ARM's own GIC-500
3309 * implementation, but with a 'pre-ITS' added that requires
3310 * special handling in software.
3311 */
3312 .desc = "ITS: Socionext Synquacer pre-ITS",
3313 .iidr = 0x0001143b,
3314 .mask = 0xffffffff,
3315 .init = its_enable_quirk_socionext_synquacer,
3316 },
3317#endif
Marc Zyngier5c9a8822017-07-28 21:20:37 +01003318#ifdef CONFIG_HISILICON_ERRATUM_161600802
3319 {
3320 .desc = "ITS: Hip07 erratum 161600802",
3321 .iidr = 0x00000004,
3322 .mask = 0xffffffff,
3323 .init = its_enable_quirk_hip07_161600802,
3324 },
3325#endif
Robert Richter67510cc2015-09-21 22:58:37 +02003326 {
3327 }
3328};
3329
3330static void its_enable_quirks(struct its_node *its)
3331{
3332 u32 iidr = readl_relaxed(its->base + GITS_IIDR);
3333
3334 gic_enable_quirks(iidr, its_quirks, its);
3335}
3336
Derek Basehoredba0bc72018-02-28 21:48:18 -08003337static int its_save_disable(void)
3338{
3339 struct its_node *its;
3340 int err = 0;
3341
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +02003342 raw_spin_lock(&its_lock);
Derek Basehoredba0bc72018-02-28 21:48:18 -08003343 list_for_each_entry(its, &its_nodes, entry) {
3344 void __iomem *base;
3345
3346 if (!(its->flags & ITS_FLAGS_SAVE_SUSPEND_STATE))
3347 continue;
3348
3349 base = its->base;
3350 its->ctlr_save = readl_relaxed(base + GITS_CTLR);
3351 err = its_force_quiescent(base);
3352 if (err) {
3353 pr_err("ITS@%pa: failed to quiesce: %d\n",
3354 &its->phys_base, err);
3355 writel_relaxed(its->ctlr_save, base + GITS_CTLR);
3356 goto err;
3357 }
3358
3359 its->cbaser_save = gits_read_cbaser(base + GITS_CBASER);
3360 }
3361
3362err:
3363 if (err) {
3364 list_for_each_entry_continue_reverse(its, &its_nodes, entry) {
3365 void __iomem *base;
3366
3367 if (!(its->flags & ITS_FLAGS_SAVE_SUSPEND_STATE))
3368 continue;
3369
3370 base = its->base;
3371 writel_relaxed(its->ctlr_save, base + GITS_CTLR);
3372 }
3373 }
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +02003374 raw_spin_unlock(&its_lock);
Derek Basehoredba0bc72018-02-28 21:48:18 -08003375
3376 return err;
3377}
3378
3379static void its_restore_enable(void)
3380{
3381 struct its_node *its;
3382 int ret;
3383
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +02003384 raw_spin_lock(&its_lock);
Derek Basehoredba0bc72018-02-28 21:48:18 -08003385 list_for_each_entry(its, &its_nodes, entry) {
3386 void __iomem *base;
3387 int i;
3388
3389 if (!(its->flags & ITS_FLAGS_SAVE_SUSPEND_STATE))
3390 continue;
3391
3392 base = its->base;
3393
3394 /*
3395 * Make sure that the ITS is disabled. If it fails to quiesce,
3396 * don't restore it since writing to CBASER or BASER<n>
3397 * registers is undefined according to the GIC v3 ITS
3398 * Specification.
3399 */
3400 ret = its_force_quiescent(base);
3401 if (ret) {
3402 pr_err("ITS@%pa: failed to quiesce on resume: %d\n",
3403 &its->phys_base, ret);
3404 continue;
3405 }
3406
3407 gits_write_cbaser(its->cbaser_save, base + GITS_CBASER);
3408
3409 /*
3410 * Writing CBASER resets CREADR to 0, so make CWRITER and
3411 * cmd_write line up with it.
3412 */
3413 its->cmd_write = its->cmd_base;
3414 gits_write_cwriter(0, base + GITS_CWRITER);
3415
3416 /* Restore GITS_BASER from the value cache. */
3417 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
3418 struct its_baser *baser = &its->tables[i];
3419
3420 if (!(baser->val & GITS_BASER_VALID))
3421 continue;
3422
3423 its_write_baser(its, baser, baser->val);
3424 }
3425 writel_relaxed(its->ctlr_save, base + GITS_CTLR);
Derek Basehore920181c2018-02-28 21:48:20 -08003426
3427 /*
3428 * Reinit the collection if it's stored in the ITS. This is
3429 * indicated by the col_id being less than the HCC field.
3430 * CID < HCC as specified in the GIC v3 Documentation.
3431 */
3432 if (its->collections[smp_processor_id()].col_id <
3433 GITS_TYPER_HCC(gic_read_typer(base + GITS_TYPER)))
3434 its_cpu_init_collection(its);
Derek Basehoredba0bc72018-02-28 21:48:18 -08003435 }
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +02003436 raw_spin_unlock(&its_lock);
Derek Basehoredba0bc72018-02-28 21:48:18 -08003437}
3438
3439static struct syscore_ops its_syscore_ops = {
3440 .suspend = its_save_disable,
3441 .resume = its_restore_enable,
3442};
3443
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003444static int its_init_domain(struct fwnode_handle *handle, struct its_node *its)
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003445{
3446 struct irq_domain *inner_domain;
3447 struct msi_domain_info *info;
3448
3449 info = kzalloc(sizeof(*info), GFP_KERNEL);
3450 if (!info)
3451 return -ENOMEM;
3452
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003453 inner_domain = irq_domain_create_tree(handle, &its_domain_ops, its);
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003454 if (!inner_domain) {
3455 kfree(info);
3456 return -ENOMEM;
3457 }
3458
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003459 inner_domain->parent = its_parent;
Marc Zyngier96f0d932017-06-22 11:42:50 +01003460 irq_domain_update_bus_token(inner_domain, DOMAIN_BUS_NEXUS);
Ard Biesheuvel558b0162017-10-17 17:55:56 +01003461 inner_domain->flags |= its->msi_domain_flags;
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003462 info->ops = &its_msi_domain_ops;
3463 info->data = its;
3464 inner_domain->host_data = info;
3465
3466 return 0;
3467}
3468
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003469static int its_init_vpe_domain(void)
3470{
Marc Zyngier20b3d542016-12-20 15:23:22 +00003471 struct its_node *its;
3472 u32 devid;
3473 int entries;
3474
3475 if (gic_rdists->has_direct_lpi) {
3476 pr_info("ITS: Using DirectLPI for VPE invalidation\n");
3477 return 0;
3478 }
3479
3480 /* Any ITS will do, even if not v4 */
3481 its = list_first_entry(&its_nodes, struct its_node, entry);
3482
3483 entries = roundup_pow_of_two(nr_cpu_ids);
Kees Cook6396bb22018-06-12 14:03:40 -07003484 vpe_proxy.vpes = kcalloc(entries, sizeof(*vpe_proxy.vpes),
Marc Zyngier20b3d542016-12-20 15:23:22 +00003485 GFP_KERNEL);
3486 if (!vpe_proxy.vpes) {
3487 pr_err("ITS: Can't allocate GICv4 proxy device array\n");
3488 return -ENOMEM;
3489 }
3490
3491 /* Use the last possible DevID */
3492 devid = GENMASK(its->device_ids - 1, 0);
3493 vpe_proxy.dev = its_create_device(its, devid, entries, false);
3494 if (!vpe_proxy.dev) {
3495 kfree(vpe_proxy.vpes);
3496 pr_err("ITS: Can't allocate GICv4 proxy device\n");
3497 return -ENOMEM;
3498 }
3499
Shanker Donthinenic427a472017-09-23 13:50:19 -05003500 BUG_ON(entries > vpe_proxy.dev->nr_ites);
Marc Zyngier20b3d542016-12-20 15:23:22 +00003501
3502 raw_spin_lock_init(&vpe_proxy.lock);
3503 vpe_proxy.next_victim = 0;
3504 pr_info("ITS: Allocated DevID %x as GICv4 proxy device (%d slots)\n",
3505 devid, vpe_proxy.dev->nr_ites);
3506
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003507 return 0;
3508}
3509
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003510static int __init its_compute_its_list_map(struct resource *res,
3511 void __iomem *its_base)
3512{
3513 int its_number;
3514 u32 ctlr;
3515
3516 /*
3517 * This is assumed to be done early enough that we're
3518 * guaranteed to be single-threaded, hence no
3519 * locking. Should this change, we should address
3520 * this.
3521 */
Marc Zyngierab604912017-10-08 18:48:06 +01003522 its_number = find_first_zero_bit(&its_list_map, GICv4_ITS_LIST_MAX);
3523 if (its_number >= GICv4_ITS_LIST_MAX) {
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003524 pr_err("ITS@%pa: No ITSList entry available!\n",
3525 &res->start);
3526 return -EINVAL;
3527 }
3528
3529 ctlr = readl_relaxed(its_base + GITS_CTLR);
3530 ctlr &= ~GITS_CTLR_ITS_NUMBER;
3531 ctlr |= its_number << GITS_CTLR_ITS_NUMBER_SHIFT;
3532 writel_relaxed(ctlr, its_base + GITS_CTLR);
3533 ctlr = readl_relaxed(its_base + GITS_CTLR);
3534 if ((ctlr & GITS_CTLR_ITS_NUMBER) != (its_number << GITS_CTLR_ITS_NUMBER_SHIFT)) {
3535 its_number = ctlr & GITS_CTLR_ITS_NUMBER;
3536 its_number >>= GITS_CTLR_ITS_NUMBER_SHIFT;
3537 }
3538
3539 if (test_and_set_bit(its_number, &its_list_map)) {
3540 pr_err("ITS@%pa: Duplicate ITSList entry %d\n",
3541 &res->start, its_number);
3542 return -EINVAL;
3543 }
3544
3545 return its_number;
3546}
3547
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003548static int __init its_probe_one(struct resource *res,
3549 struct fwnode_handle *handle, int numa_node)
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003550{
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003551 struct its_node *its;
3552 void __iomem *its_base;
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003553 u32 val, ctlr;
3554 u64 baser, tmp, typer;
Shanker Donthineni539d3782019-01-14 09:50:19 +00003555 struct page *page;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003556 int err;
3557
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003558 its_base = ioremap(res->start, resource_size(res));
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003559 if (!its_base) {
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003560 pr_warn("ITS@%pa: Unable to map ITS registers\n", &res->start);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003561 return -ENOMEM;
3562 }
3563
3564 val = readl_relaxed(its_base + GITS_PIDR2) & GIC_PIDR2_ARCH_MASK;
3565 if (val != 0x30 && val != 0x40) {
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003566 pr_warn("ITS@%pa: No ITS detected, giving up\n", &res->start);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003567 err = -ENODEV;
3568 goto out_unmap;
3569 }
3570
Yun Wu4559fbb2015-03-06 16:37:50 +00003571 err = its_force_quiescent(its_base);
3572 if (err) {
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003573 pr_warn("ITS@%pa: Failed to quiesce, giving up\n", &res->start);
Yun Wu4559fbb2015-03-06 16:37:50 +00003574 goto out_unmap;
3575 }
3576
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003577 pr_info("ITS %pR\n", res);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003578
3579 its = kzalloc(sizeof(*its), GFP_KERNEL);
3580 if (!its) {
3581 err = -ENOMEM;
3582 goto out_unmap;
3583 }
3584
3585 raw_spin_lock_init(&its->lock);
Marc Zyngier9791ec72019-01-29 10:02:33 +00003586 mutex_init(&its->dev_alloc_lock);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003587 INIT_LIST_HEAD(&its->entry);
3588 INIT_LIST_HEAD(&its->its_device_list);
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003589 typer = gic_read_typer(its_base + GITS_TYPER);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003590 its->base = its_base;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003591 its->phys_base = res->start;
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003592 its->ite_size = GITS_TYPER_ITT_ENTRY_SIZE(typer);
Ard Biesheuvelfa150012017-10-17 17:55:54 +01003593 its->device_ids = GITS_TYPER_DEVBITS(typer);
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003594 its->is_v4 = !!(typer & GITS_TYPER_VLPIS);
3595 if (its->is_v4) {
3596 if (!(typer & GITS_TYPER_VMOVP)) {
3597 err = its_compute_its_list_map(res, its_base);
3598 if (err < 0)
3599 goto out_free_its;
3600
Marc Zyngierdebf6d02017-10-08 18:44:42 +01003601 its->list_nr = err;
3602
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003603 pr_info("ITS@%pa: Using ITS number %d\n",
3604 &res->start, err);
3605 } else {
3606 pr_info("ITS@%pa: Single VMOVP capable\n", &res->start);
3607 }
3608 }
3609
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003610 its->numa_node = numa_node;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003611
Shanker Donthineni539d3782019-01-14 09:50:19 +00003612 page = alloc_pages_node(its->numa_node, GFP_KERNEL | __GFP_ZERO,
3613 get_order(ITS_CMD_QUEUE_SZ));
3614 if (!page) {
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003615 err = -ENOMEM;
3616 goto out_free_its;
3617 }
Shanker Donthineni539d3782019-01-14 09:50:19 +00003618 its->cmd_base = (void *)page_address(page);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003619 its->cmd_write = its->cmd_base;
Ard Biesheuvel558b0162017-10-17 17:55:56 +01003620 its->fwnode_handle = handle;
3621 its->get_msi_base = its_irq_get_msi_base;
3622 its->msi_domain_flags = IRQ_DOMAIN_FLAG_MSI_REMAP;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003623
Robert Richter67510cc2015-09-21 22:58:37 +02003624 its_enable_quirks(its);
3625
Shanker Donthineni0e0b0f62016-06-06 18:17:31 -05003626 err = its_alloc_tables(its);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003627 if (err)
3628 goto out_free_cmd;
3629
3630 err = its_alloc_collections(its);
3631 if (err)
3632 goto out_free_tables;
3633
3634 baser = (virt_to_phys(its->cmd_base) |
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06003635 GITS_CBASER_RaWaWb |
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003636 GITS_CBASER_InnerShareable |
3637 (ITS_CMD_QUEUE_SZ / SZ_4K - 1) |
3638 GITS_CBASER_VALID);
3639
Vladimir Murzin0968a612016-11-02 11:54:06 +00003640 gits_write_cbaser(baser, its->base + GITS_CBASER);
3641 tmp = gits_read_cbaser(its->base + GITS_CBASER);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003642
Marc Zyngier4ad3e362015-03-27 14:15:04 +00003643 if ((tmp ^ baser) & GITS_CBASER_SHAREABILITY_MASK) {
Marc Zyngier241a3862015-03-27 14:15:05 +00003644 if (!(tmp & GITS_CBASER_SHAREABILITY_MASK)) {
3645 /*
3646 * The HW reports non-shareable, we must
3647 * remove the cacheability attributes as
3648 * well.
3649 */
3650 baser &= ~(GITS_CBASER_SHAREABILITY_MASK |
3651 GITS_CBASER_CACHEABILITY_MASK);
3652 baser |= GITS_CBASER_nC;
Vladimir Murzin0968a612016-11-02 11:54:06 +00003653 gits_write_cbaser(baser, its->base + GITS_CBASER);
Marc Zyngier241a3862015-03-27 14:15:05 +00003654 }
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003655 pr_info("ITS: using cache flushing for cmd queue\n");
3656 its->flags |= ITS_FLAGS_CMDQ_NEEDS_FLUSHING;
3657 }
3658
Vladimir Murzin0968a612016-11-02 11:54:06 +00003659 gits_write_cwriter(0, its->base + GITS_CWRITER);
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003660 ctlr = readl_relaxed(its->base + GITS_CTLR);
Marc Zyngierd51c4b42017-06-27 21:24:25 +01003661 ctlr |= GITS_CTLR_ENABLE;
3662 if (its->is_v4)
3663 ctlr |= GITS_CTLR_ImDe;
3664 writel_relaxed(ctlr, its->base + GITS_CTLR);
Marc Zyngier241a3862015-03-27 14:15:05 +00003665
Derek Basehoredba0bc72018-02-28 21:48:18 -08003666 if (GITS_TYPER_HCC(typer))
3667 its->flags |= ITS_FLAGS_SAVE_SUSPEND_STATE;
3668
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003669 err = its_init_domain(handle, its);
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003670 if (err)
3671 goto out_free_tables;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003672
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +02003673 raw_spin_lock(&its_lock);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003674 list_add(&its->entry, &its_nodes);
Sebastian Andrzej Siewiora8db7452018-07-18 17:42:04 +02003675 raw_spin_unlock(&its_lock);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003676
3677 return 0;
3678
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003679out_free_tables:
3680 its_free_tables(its);
3681out_free_cmd:
Robert Richter5bc13c22017-02-01 18:38:25 +01003682 free_pages((unsigned long)its->cmd_base, get_order(ITS_CMD_QUEUE_SZ));
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003683out_free_its:
3684 kfree(its);
3685out_unmap:
3686 iounmap(its_base);
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003687 pr_err("ITS@%pa: failed probing (%d)\n", &res->start, err);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003688 return err;
3689}
3690
3691static bool gic_rdists_supports_plpis(void)
3692{
Marc Zyngier589ce5f2016-10-14 15:13:07 +01003693 return !!(gic_read_typer(gic_data_rdist_rd_base() + GICR_TYPER) & GICR_TYPER_PLPIS);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003694}
3695
Shanker Donthineni6eb486b2018-03-21 20:58:49 -05003696static int redist_disable_lpis(void)
3697{
3698 void __iomem *rbase = gic_data_rdist_rd_base();
3699 u64 timeout = USEC_PER_SEC;
3700 u64 val;
3701
3702 if (!gic_rdists_supports_plpis()) {
3703 pr_info("CPU%d: LPIs not supported\n", smp_processor_id());
3704 return -ENXIO;
3705 }
3706
3707 val = readl_relaxed(rbase + GICR_CTLR);
3708 if (!(val & GICR_CTLR_ENABLE_LPIS))
3709 return 0;
3710
Marc Zyngier11e37d32018-07-27 13:38:54 +01003711 /*
3712 * If coming via a CPU hotplug event, we don't need to disable
3713 * LPIs before trying to re-enable them. They are already
3714 * configured and all is well in the world.
Marc Zyngierc440a9d2018-07-27 15:40:13 +01003715 *
3716 * If running with preallocated tables, there is nothing to do.
Marc Zyngier11e37d32018-07-27 13:38:54 +01003717 */
Marc Zyngierc440a9d2018-07-27 15:40:13 +01003718 if (gic_data_rdist()->lpi_enabled ||
3719 (gic_rdists->flags & RDIST_FLAGS_RD_TABLES_PREALLOCATED))
Marc Zyngier11e37d32018-07-27 13:38:54 +01003720 return 0;
3721
3722 /*
3723 * From that point on, we only try to do some damage control.
3724 */
3725 pr_warn("GICv3: CPU%d: Booted with LPIs enabled, memory probably corrupted\n",
Shanker Donthineni6eb486b2018-03-21 20:58:49 -05003726 smp_processor_id());
3727 add_taint(TAINT_CRAP, LOCKDEP_STILL_OK);
3728
3729 /* Disable LPIs */
3730 val &= ~GICR_CTLR_ENABLE_LPIS;
3731 writel_relaxed(val, rbase + GICR_CTLR);
3732
3733 /* Make sure any change to GICR_CTLR is observable by the GIC */
3734 dsb(sy);
3735
3736 /*
3737 * Software must observe RWP==0 after clearing GICR_CTLR.EnableLPIs
3738 * from 1 to 0 before programming GICR_PEND{PROP}BASER registers.
3739 * Error out if we time out waiting for RWP to clear.
3740 */
3741 while (readl_relaxed(rbase + GICR_CTLR) & GICR_CTLR_RWP) {
3742 if (!timeout) {
3743 pr_err("CPU%d: Timeout while disabling LPIs\n",
3744 smp_processor_id());
3745 return -ETIMEDOUT;
3746 }
3747 udelay(1);
3748 timeout--;
3749 }
3750
3751 /*
3752 * After it has been written to 1, it is IMPLEMENTATION
3753 * DEFINED whether GICR_CTLR.EnableLPI becomes RES1 or can be
3754 * cleared to 0. Error out if clearing the bit failed.
3755 */
3756 if (readl_relaxed(rbase + GICR_CTLR) & GICR_CTLR_ENABLE_LPIS) {
3757 pr_err("CPU%d: Failed to disable LPIs\n", smp_processor_id());
3758 return -EBUSY;
3759 }
3760
3761 return 0;
3762}
3763
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003764int its_cpu_init(void)
3765{
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003766 if (!list_empty(&its_nodes)) {
Shanker Donthineni6eb486b2018-03-21 20:58:49 -05003767 int ret;
3768
3769 ret = redist_disable_lpis();
3770 if (ret)
3771 return ret;
3772
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003773 its_cpu_init_lpis();
Derek Basehore920181c2018-02-28 21:48:20 -08003774 its_cpu_init_collections();
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003775 }
3776
3777 return 0;
3778}
3779
Arvind Yadav935bba72017-06-22 16:05:30 +05303780static const struct of_device_id its_device_id[] = {
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003781 { .compatible = "arm,gic-v3-its", },
3782 {},
3783};
3784
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003785static int __init its_of_probe(struct device_node *node)
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003786{
3787 struct device_node *np;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003788 struct resource res;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003789
3790 for (np = of_find_matching_node(node, its_device_id); np;
3791 np = of_find_matching_node(np, its_device_id)) {
Stephen Boyd95a25622018-02-01 09:03:29 -08003792 if (!of_device_is_available(np))
3793 continue;
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003794 if (!of_property_read_bool(np, "msi-controller")) {
Rob Herringe81f54c2017-07-18 16:43:10 -05003795 pr_warn("%pOF: no msi-controller property, ITS ignored\n",
3796 np);
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003797 continue;
3798 }
3799
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003800 if (of_address_to_resource(np, 0, &res)) {
Rob Herringe81f54c2017-07-18 16:43:10 -05003801 pr_warn("%pOF: no regs?\n", np);
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003802 continue;
3803 }
3804
3805 its_probe_one(&res, &np->fwnode, of_node_to_nid(np));
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003806 }
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003807 return 0;
3808}
3809
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003810#ifdef CONFIG_ACPI
3811
3812#define ACPI_GICV3_ITS_MEM_SIZE (SZ_128K)
3813
Robert Richterd1ce2632017-07-12 15:25:09 +02003814#ifdef CONFIG_ACPI_NUMA
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303815struct its_srat_map {
3816 /* numa node id */
3817 u32 numa_node;
3818 /* GIC ITS ID */
3819 u32 its_id;
3820};
3821
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003822static struct its_srat_map *its_srat_maps __initdata;
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303823static int its_in_srat __initdata;
3824
3825static int __init acpi_get_its_numa_node(u32 its_id)
3826{
3827 int i;
3828
3829 for (i = 0; i < its_in_srat; i++) {
3830 if (its_id == its_srat_maps[i].its_id)
3831 return its_srat_maps[i].numa_node;
3832 }
3833 return NUMA_NO_NODE;
3834}
3835
Keith Busch60574d12019-03-11 14:55:57 -06003836static int __init gic_acpi_match_srat_its(union acpi_subtable_headers *header,
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003837 const unsigned long end)
3838{
3839 return 0;
3840}
3841
Keith Busch60574d12019-03-11 14:55:57 -06003842static int __init gic_acpi_parse_srat_its(union acpi_subtable_headers *header,
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303843 const unsigned long end)
3844{
3845 int node;
3846 struct acpi_srat_gic_its_affinity *its_affinity;
3847
3848 its_affinity = (struct acpi_srat_gic_its_affinity *)header;
3849 if (!its_affinity)
3850 return -EINVAL;
3851
3852 if (its_affinity->header.length < sizeof(*its_affinity)) {
3853 pr_err("SRAT: Invalid header length %d in ITS affinity\n",
3854 its_affinity->header.length);
3855 return -EINVAL;
3856 }
3857
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303858 node = acpi_map_pxm_to_node(its_affinity->proximity_domain);
3859
3860 if (node == NUMA_NO_NODE || node >= MAX_NUMNODES) {
3861 pr_err("SRAT: Invalid NUMA node %d in ITS affinity\n", node);
3862 return 0;
3863 }
3864
3865 its_srat_maps[its_in_srat].numa_node = node;
3866 its_srat_maps[its_in_srat].its_id = its_affinity->its_id;
3867 its_in_srat++;
3868 pr_info("SRAT: PXM %d -> ITS %d -> Node %d\n",
3869 its_affinity->proximity_domain, its_affinity->its_id, node);
3870
3871 return 0;
3872}
3873
3874static void __init acpi_table_parse_srat_its(void)
3875{
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003876 int count;
3877
3878 count = acpi_table_parse_entries(ACPI_SIG_SRAT,
3879 sizeof(struct acpi_table_srat),
3880 ACPI_SRAT_TYPE_GIC_ITS_AFFINITY,
3881 gic_acpi_match_srat_its, 0);
3882 if (count <= 0)
3883 return;
3884
Kees Cook6da2ec52018-06-12 13:55:00 -07003885 its_srat_maps = kmalloc_array(count, sizeof(struct its_srat_map),
3886 GFP_KERNEL);
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003887 if (!its_srat_maps) {
3888 pr_warn("SRAT: Failed to allocate memory for its_srat_maps!\n");
3889 return;
3890 }
3891
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303892 acpi_table_parse_entries(ACPI_SIG_SRAT,
3893 sizeof(struct acpi_table_srat),
3894 ACPI_SRAT_TYPE_GIC_ITS_AFFINITY,
3895 gic_acpi_parse_srat_its, 0);
3896}
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003897
3898/* free the its_srat_maps after ITS probing */
3899static void __init acpi_its_srat_maps_free(void)
3900{
3901 kfree(its_srat_maps);
3902}
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303903#else
3904static void __init acpi_table_parse_srat_its(void) { }
3905static int __init acpi_get_its_numa_node(u32 its_id) { return NUMA_NO_NODE; }
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003906static void __init acpi_its_srat_maps_free(void) { }
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303907#endif
3908
Keith Busch60574d12019-03-11 14:55:57 -06003909static int __init gic_acpi_parse_madt_its(union acpi_subtable_headers *header,
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003910 const unsigned long end)
3911{
3912 struct acpi_madt_generic_translator *its_entry;
3913 struct fwnode_handle *dom_handle;
3914 struct resource res;
3915 int err;
3916
3917 its_entry = (struct acpi_madt_generic_translator *)header;
3918 memset(&res, 0, sizeof(res));
3919 res.start = its_entry->base_address;
3920 res.end = its_entry->base_address + ACPI_GICV3_ITS_MEM_SIZE - 1;
3921 res.flags = IORESOURCE_MEM;
3922
Marc Zyngier5778cc72019-07-31 16:13:42 +01003923 dom_handle = irq_domain_alloc_fwnode(&res.start);
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003924 if (!dom_handle) {
3925 pr_err("ITS@%pa: Unable to allocate GICv3 ITS domain token\n",
3926 &res.start);
3927 return -ENOMEM;
3928 }
3929
Shameer Kolothum8b4282e2018-02-13 15:20:50 +00003930 err = iort_register_domain_token(its_entry->translation_id, res.start,
3931 dom_handle);
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003932 if (err) {
3933 pr_err("ITS@%pa: Unable to register GICv3 ITS domain token (ITS ID %d) to IORT\n",
3934 &res.start, its_entry->translation_id);
3935 goto dom_err;
3936 }
3937
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303938 err = its_probe_one(&res, dom_handle,
3939 acpi_get_its_numa_node(its_entry->translation_id));
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003940 if (!err)
3941 return 0;
3942
3943 iort_deregister_domain_token(its_entry->translation_id);
3944dom_err:
3945 irq_domain_free_fwnode(dom_handle);
3946 return err;
3947}
3948
3949static void __init its_acpi_probe(void)
3950{
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303951 acpi_table_parse_srat_its();
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003952 acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_TRANSLATOR,
3953 gic_acpi_parse_madt_its, 0);
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003954 acpi_its_srat_maps_free();
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003955}
3956#else
3957static void __init its_acpi_probe(void) { }
3958#endif
3959
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003960int __init its_init(struct fwnode_handle *handle, struct rdists *rdists,
3961 struct irq_domain *parent_domain)
3962{
3963 struct device_node *of_node;
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003964 struct its_node *its;
3965 bool has_v4 = false;
3966 int err;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003967
3968 its_parent = parent_domain;
3969 of_node = to_of_node(handle);
3970 if (of_node)
3971 its_of_probe(of_node);
3972 else
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003973 its_acpi_probe();
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003974
3975 if (list_empty(&its_nodes)) {
3976 pr_warn("ITS: No ITS available, not enabling LPIs\n");
3977 return -ENXIO;
3978 }
3979
3980 gic_rdists = rdists;
Marc Zyngier11e37d32018-07-27 13:38:54 +01003981
3982 err = allocate_lpi_tables();
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003983 if (err)
3984 return err;
3985
3986 list_for_each_entry(its, &its_nodes, entry)
3987 has_v4 |= its->is_v4;
3988
3989 if (has_v4 & rdists->has_vlpis) {
Marc Zyngier3d63cb52016-12-20 15:31:54 +00003990 if (its_init_vpe_domain() ||
3991 its_init_v4(parent_domain, &its_vpe_domain_ops)) {
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003992 rdists->has_vlpis = false;
3993 pr_err("ITS: Disabling GICv4 support\n");
3994 }
3995 }
3996
Derek Basehoredba0bc72018-02-28 21:48:18 -08003997 register_syscore_ops(&its_syscore_ops);
3998
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003999 return 0;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00004000}