blob: e88395605e32dc32960974a4e8707a30037b107b [file] [log] [blame]
Marc Zyngiercc2d3212014-11-24 14:35:11 +00001/*
Marc Zyngierd7276b82016-12-20 15:11:47 +00002 * Copyright (C) 2013-2017 ARM Limited, All Rights Reserved.
Marc Zyngiercc2d3212014-11-24 14:35:11 +00003 * Author: Marc Zyngier <marc.zyngier@arm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +020018#include <linux/acpi.h>
Hanjun Guo8d3554b2017-03-07 20:39:59 +080019#include <linux/acpi_iort.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000020#include <linux/bitmap.h>
21#include <linux/cpu.h>
22#include <linux/delay.h>
Robin Murphy44bb7e22016-09-12 17:13:59 +010023#include <linux/dma-iommu.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000024#include <linux/interrupt.h>
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +020025#include <linux/irqdomain.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000026#include <linux/log2.h>
27#include <linux/mm.h>
28#include <linux/msi.h>
29#include <linux/of.h>
30#include <linux/of_address.h>
31#include <linux/of_irq.h>
32#include <linux/of_pci.h>
33#include <linux/of_platform.h>
34#include <linux/percpu.h>
35#include <linux/slab.h>
36
Joel Porquet41a83e02015-07-07 17:11:46 -040037#include <linux/irqchip.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000038#include <linux/irqchip/arm-gic-v3.h>
Marc Zyngierc808eea2016-12-20 09:31:20 +000039#include <linux/irqchip/arm-gic-v4.h>
Marc Zyngiercc2d3212014-11-24 14:35:11 +000040
Marc Zyngiercc2d3212014-11-24 14:35:11 +000041#include <asm/cputype.h>
42#include <asm/exception.h>
43
Robert Richter67510cc2015-09-21 22:58:37 +020044#include "irq-gic-common.h"
45
Robert Richter94100972015-09-21 22:58:38 +020046#define ITS_FLAGS_CMDQ_NEEDS_FLUSHING (1ULL << 0)
47#define ITS_FLAGS_WORKAROUND_CAVIUM_22375 (1ULL << 1)
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +020048#define ITS_FLAGS_WORKAROUND_CAVIUM_23144 (1ULL << 2)
Marc Zyngiercc2d3212014-11-24 14:35:11 +000049
Marc Zyngierc48ed512014-11-24 14:35:12 +000050#define RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING (1 << 0)
51
Marc Zyngiera13b0402016-12-19 17:15:24 +000052static u32 lpi_id_bits;
53
54/*
55 * We allocate memory for PROPBASE to cover 2 ^ lpi_id_bits LPIs to
56 * deal with (one configuration byte per interrupt). PENDBASE has to
57 * be 64kB aligned (one bit per LPI, plus 8192 bits for SPI/PPI/SGI).
58 */
59#define LPI_NRBITS lpi_id_bits
60#define LPI_PROPBASE_SZ ALIGN(BIT(LPI_NRBITS), SZ_64K)
61#define LPI_PENDBASE_SZ ALIGN(BIT(LPI_NRBITS) / 8, SZ_64K)
62
63#define LPI_PROP_DEFAULT_PRIO 0xa0
64
Marc Zyngiercc2d3212014-11-24 14:35:11 +000065/*
66 * Collection structure - just an ID, and a redistributor address to
67 * ping. We use one per CPU as a bag of interrupts assigned to this
68 * CPU.
69 */
70struct its_collection {
71 u64 target_address;
72 u16 col_id;
73};
74
75/*
Shanker Donthineni93473592016-06-06 18:17:30 -050076 * The ITS_BASER structure - contains memory information, cached
77 * value of BASER register configuration and ITS page size.
Shanker Donthineni466b7d12016-03-09 22:10:49 -060078 */
79struct its_baser {
80 void *base;
81 u64 val;
82 u32 order;
Shanker Donthineni93473592016-06-06 18:17:30 -050083 u32 psz;
Shanker Donthineni466b7d12016-03-09 22:10:49 -060084};
85
86/*
Marc Zyngiercc2d3212014-11-24 14:35:11 +000087 * The ITS structure - contains most of the infrastructure, with the
Marc Zyngier841514a2015-07-28 14:46:20 +010088 * top-level MSI domain, the command queue, the collections, and the
89 * list of devices writing to it.
Marc Zyngiercc2d3212014-11-24 14:35:11 +000090 */
91struct its_node {
92 raw_spinlock_t lock;
93 struct list_head entry;
Marc Zyngiercc2d3212014-11-24 14:35:11 +000094 void __iomem *base;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +020095 phys_addr_t phys_base;
Marc Zyngiercc2d3212014-11-24 14:35:11 +000096 struct its_cmd_block *cmd_base;
97 struct its_cmd_block *cmd_write;
Shanker Donthineni466b7d12016-03-09 22:10:49 -060098 struct its_baser tables[GITS_BASER_NR_REGS];
Marc Zyngiercc2d3212014-11-24 14:35:11 +000099 struct its_collection *collections;
100 struct list_head its_device_list;
101 u64 flags;
102 u32 ite_size;
Shanker Donthineni466b7d12016-03-09 22:10:49 -0600103 u32 device_ids;
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +0200104 int numa_node;
Marc Zyngier3dfa5762016-12-19 17:25:54 +0000105 bool is_v4;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000106};
107
108#define ITS_ITT_ALIGN SZ_256
109
Shanker Donthineni32bd44d2017-10-07 15:43:48 -0500110/* The maximum number of VPEID bits supported by VLPI commands */
111#define ITS_MAX_VPEID_BITS (16)
112#define ITS_MAX_VPEID (1 << (ITS_MAX_VPEID_BITS))
113
Shanker Donthineni2eca0d62016-02-16 18:00:36 -0600114/* Convert page order to size in bytes */
115#define PAGE_ORDER_TO_SIZE(o) (PAGE_SIZE << (o))
116
Marc Zyngier591e5be2015-07-17 10:46:42 +0100117struct event_lpi_map {
118 unsigned long *lpi_map;
119 u16 *col_map;
120 irq_hw_number_t lpi_base;
121 int nr_lpis;
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000122 struct mutex vlpi_lock;
123 struct its_vm *vm;
124 struct its_vlpi_map *vlpi_maps;
125 int nr_vlpis;
Marc Zyngier591e5be2015-07-17 10:46:42 +0100126};
127
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000128/*
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000129 * The ITS view of a device - belongs to an ITS, owns an interrupt
130 * translation table, and a list of interrupts. If it some of its
131 * LPIs are injected into a guest (GICv4), the event_map.vm field
132 * indicates which one.
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000133 */
134struct its_device {
135 struct list_head entry;
136 struct its_node *its;
Marc Zyngier591e5be2015-07-17 10:46:42 +0100137 struct event_lpi_map event_map;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000138 void *itt;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000139 u32 nr_ites;
140 u32 device_id;
141};
142
Marc Zyngier20b3d542016-12-20 15:23:22 +0000143static struct {
144 raw_spinlock_t lock;
145 struct its_device *dev;
146 struct its_vpe **vpes;
147 int next_victim;
148} vpe_proxy;
149
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000150static LIST_HEAD(its_nodes);
151static DEFINE_SPINLOCK(its_lock);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000152static struct rdists *gic_rdists;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +0200153static struct irq_domain *its_parent;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000154
Marc Zyngier3dfa5762016-12-19 17:25:54 +0000155/*
156 * We have a maximum number of 16 ITSs in the whole system if we're
157 * using the ITSList mechanism
158 */
159#define ITS_LIST_MAX 16
160
161static unsigned long its_list_map;
Marc Zyngier3171a472016-12-20 15:17:28 +0000162static u16 vmovp_seq_num;
163static DEFINE_RAW_SPINLOCK(vmovp_lock);
164
Marc Zyngier7d75bbb2016-12-20 13:55:54 +0000165static DEFINE_IDA(its_vpeid_ida);
Marc Zyngier3dfa5762016-12-19 17:25:54 +0000166
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000167#define gic_data_rdist() (raw_cpu_ptr(gic_rdists->rdist))
168#define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base)
Marc Zyngiere643d802016-12-20 15:09:31 +0000169#define gic_data_rdist_vlpi_base() (gic_data_rdist_rd_base() + SZ_128K)
Marc Zyngier1ac19ca2014-11-24 14:35:14 +0000170
Marc Zyngier591e5be2015-07-17 10:46:42 +0100171static struct its_collection *dev_event_to_col(struct its_device *its_dev,
172 u32 event)
173{
174 struct its_node *its = its_dev->its;
175
176 return its->collections + its_dev->event_map.col_map[event];
177}
178
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000179/*
180 * ITS command descriptors - parameters to be encoded in a command
181 * block.
182 */
183struct its_cmd_desc {
184 union {
185 struct {
186 struct its_device *dev;
187 u32 event_id;
188 } its_inv_cmd;
189
190 struct {
191 struct its_device *dev;
192 u32 event_id;
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000193 } its_clear_cmd;
194
195 struct {
196 struct its_device *dev;
197 u32 event_id;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000198 } its_int_cmd;
199
200 struct {
201 struct its_device *dev;
202 int valid;
203 } its_mapd_cmd;
204
205 struct {
206 struct its_collection *col;
207 int valid;
208 } its_mapc_cmd;
209
210 struct {
211 struct its_device *dev;
212 u32 phys_id;
213 u32 event_id;
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000214 } its_mapti_cmd;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000215
216 struct {
217 struct its_device *dev;
218 struct its_collection *col;
Marc Zyngier591e5be2015-07-17 10:46:42 +0100219 u32 event_id;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000220 } its_movi_cmd;
221
222 struct {
223 struct its_device *dev;
224 u32 event_id;
225 } its_discard_cmd;
226
227 struct {
228 struct its_collection *col;
229 } its_invall_cmd;
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000230
231 struct {
232 struct its_vpe *vpe;
Marc Zyngiereb781922016-12-20 14:47:05 +0000233 } its_vinvall_cmd;
234
235 struct {
236 struct its_vpe *vpe;
237 struct its_collection *col;
238 bool valid;
239 } its_vmapp_cmd;
240
241 struct {
242 struct its_vpe *vpe;
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000243 struct its_device *dev;
244 u32 virt_id;
245 u32 event_id;
246 bool db_enabled;
247 } its_vmapti_cmd;
248
249 struct {
250 struct its_vpe *vpe;
251 struct its_device *dev;
252 u32 event_id;
253 bool db_enabled;
254 } its_vmovi_cmd;
Marc Zyngier3171a472016-12-20 15:17:28 +0000255
256 struct {
257 struct its_vpe *vpe;
258 struct its_collection *col;
259 u16 seq_num;
260 u16 its_list;
261 } its_vmovp_cmd;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000262 };
263};
264
265/*
266 * The ITS command block, which is what the ITS actually parses.
267 */
268struct its_cmd_block {
269 u64 raw_cmd[4];
270};
271
272#define ITS_CMD_QUEUE_SZ SZ_64K
273#define ITS_CMD_QUEUE_NR_ENTRIES (ITS_CMD_QUEUE_SZ / sizeof(struct its_cmd_block))
274
275typedef struct its_collection *(*its_cmd_builder_t)(struct its_cmd_block *,
276 struct its_cmd_desc *);
277
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000278typedef struct its_vpe *(*its_cmd_vbuilder_t)(struct its_cmd_block *,
279 struct its_cmd_desc *);
280
Marc Zyngier4d36f132016-12-19 17:11:52 +0000281static void its_mask_encode(u64 *raw_cmd, u64 val, int h, int l)
282{
283 u64 mask = GENMASK_ULL(h, l);
284 *raw_cmd &= ~mask;
285 *raw_cmd |= (val << l) & mask;
286}
287
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000288static void its_encode_cmd(struct its_cmd_block *cmd, u8 cmd_nr)
289{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000290 its_mask_encode(&cmd->raw_cmd[0], cmd_nr, 7, 0);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000291}
292
293static void its_encode_devid(struct its_cmd_block *cmd, u32 devid)
294{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000295 its_mask_encode(&cmd->raw_cmd[0], devid, 63, 32);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000296}
297
298static void its_encode_event_id(struct its_cmd_block *cmd, u32 id)
299{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000300 its_mask_encode(&cmd->raw_cmd[1], id, 31, 0);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000301}
302
303static void its_encode_phys_id(struct its_cmd_block *cmd, u32 phys_id)
304{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000305 its_mask_encode(&cmd->raw_cmd[1], phys_id, 63, 32);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000306}
307
308static void its_encode_size(struct its_cmd_block *cmd, u8 size)
309{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000310 its_mask_encode(&cmd->raw_cmd[1], size, 4, 0);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000311}
312
313static void its_encode_itt(struct its_cmd_block *cmd, u64 itt_addr)
314{
Shanker Donthineni30ae9612017-10-09 11:46:55 -0500315 its_mask_encode(&cmd->raw_cmd[2], itt_addr >> 8, 51, 8);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000316}
317
318static void its_encode_valid(struct its_cmd_block *cmd, int valid)
319{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000320 its_mask_encode(&cmd->raw_cmd[2], !!valid, 63, 63);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000321}
322
323static void its_encode_target(struct its_cmd_block *cmd, u64 target_addr)
324{
Shanker Donthineni30ae9612017-10-09 11:46:55 -0500325 its_mask_encode(&cmd->raw_cmd[2], target_addr >> 16, 51, 16);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000326}
327
328static void its_encode_collection(struct its_cmd_block *cmd, u16 col)
329{
Marc Zyngier4d36f132016-12-19 17:11:52 +0000330 its_mask_encode(&cmd->raw_cmd[2], col, 15, 0);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000331}
332
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000333static void its_encode_vpeid(struct its_cmd_block *cmd, u16 vpeid)
334{
335 its_mask_encode(&cmd->raw_cmd[1], vpeid, 47, 32);
336}
337
338static void its_encode_virt_id(struct its_cmd_block *cmd, u32 virt_id)
339{
340 its_mask_encode(&cmd->raw_cmd[2], virt_id, 31, 0);
341}
342
343static void its_encode_db_phys_id(struct its_cmd_block *cmd, u32 db_phys_id)
344{
345 its_mask_encode(&cmd->raw_cmd[2], db_phys_id, 63, 32);
346}
347
348static void its_encode_db_valid(struct its_cmd_block *cmd, bool db_valid)
349{
350 its_mask_encode(&cmd->raw_cmd[2], db_valid, 0, 0);
351}
352
Marc Zyngier3171a472016-12-20 15:17:28 +0000353static void its_encode_seq_num(struct its_cmd_block *cmd, u16 seq_num)
354{
355 its_mask_encode(&cmd->raw_cmd[0], seq_num, 47, 32);
356}
357
358static void its_encode_its_list(struct its_cmd_block *cmd, u16 its_list)
359{
360 its_mask_encode(&cmd->raw_cmd[1], its_list, 15, 0);
361}
362
Marc Zyngiereb781922016-12-20 14:47:05 +0000363static void its_encode_vpt_addr(struct its_cmd_block *cmd, u64 vpt_pa)
364{
Shanker Donthineni30ae9612017-10-09 11:46:55 -0500365 its_mask_encode(&cmd->raw_cmd[3], vpt_pa >> 16, 51, 16);
Marc Zyngiereb781922016-12-20 14:47:05 +0000366}
367
368static void its_encode_vpt_size(struct its_cmd_block *cmd, u8 vpt_size)
369{
370 its_mask_encode(&cmd->raw_cmd[3], vpt_size, 4, 0);
371}
372
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000373static inline void its_fixup_cmd(struct its_cmd_block *cmd)
374{
375 /* Let's fixup BE commands */
376 cmd->raw_cmd[0] = cpu_to_le64(cmd->raw_cmd[0]);
377 cmd->raw_cmd[1] = cpu_to_le64(cmd->raw_cmd[1]);
378 cmd->raw_cmd[2] = cpu_to_le64(cmd->raw_cmd[2]);
379 cmd->raw_cmd[3] = cpu_to_le64(cmd->raw_cmd[3]);
380}
381
382static struct its_collection *its_build_mapd_cmd(struct its_cmd_block *cmd,
383 struct its_cmd_desc *desc)
384{
385 unsigned long itt_addr;
Marc Zyngierc8481262014-12-12 10:51:24 +0000386 u8 size = ilog2(desc->its_mapd_cmd.dev->nr_ites);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000387
388 itt_addr = virt_to_phys(desc->its_mapd_cmd.dev->itt);
389 itt_addr = ALIGN(itt_addr, ITS_ITT_ALIGN);
390
391 its_encode_cmd(cmd, GITS_CMD_MAPD);
392 its_encode_devid(cmd, desc->its_mapd_cmd.dev->device_id);
393 its_encode_size(cmd, size - 1);
394 its_encode_itt(cmd, itt_addr);
395 its_encode_valid(cmd, desc->its_mapd_cmd.valid);
396
397 its_fixup_cmd(cmd);
398
Marc Zyngier591e5be2015-07-17 10:46:42 +0100399 return NULL;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000400}
401
402static struct its_collection *its_build_mapc_cmd(struct its_cmd_block *cmd,
403 struct its_cmd_desc *desc)
404{
405 its_encode_cmd(cmd, GITS_CMD_MAPC);
406 its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id);
407 its_encode_target(cmd, desc->its_mapc_cmd.col->target_address);
408 its_encode_valid(cmd, desc->its_mapc_cmd.valid);
409
410 its_fixup_cmd(cmd);
411
412 return desc->its_mapc_cmd.col;
413}
414
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000415static struct its_collection *its_build_mapti_cmd(struct its_cmd_block *cmd,
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000416 struct its_cmd_desc *desc)
417{
Marc Zyngier591e5be2015-07-17 10:46:42 +0100418 struct its_collection *col;
419
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000420 col = dev_event_to_col(desc->its_mapti_cmd.dev,
421 desc->its_mapti_cmd.event_id);
Marc Zyngier591e5be2015-07-17 10:46:42 +0100422
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000423 its_encode_cmd(cmd, GITS_CMD_MAPTI);
424 its_encode_devid(cmd, desc->its_mapti_cmd.dev->device_id);
425 its_encode_event_id(cmd, desc->its_mapti_cmd.event_id);
426 its_encode_phys_id(cmd, desc->its_mapti_cmd.phys_id);
Marc Zyngier591e5be2015-07-17 10:46:42 +0100427 its_encode_collection(cmd, col->col_id);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000428
429 its_fixup_cmd(cmd);
430
Marc Zyngier591e5be2015-07-17 10:46:42 +0100431 return col;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000432}
433
434static struct its_collection *its_build_movi_cmd(struct its_cmd_block *cmd,
435 struct its_cmd_desc *desc)
436{
Marc Zyngier591e5be2015-07-17 10:46:42 +0100437 struct its_collection *col;
438
439 col = dev_event_to_col(desc->its_movi_cmd.dev,
440 desc->its_movi_cmd.event_id);
441
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000442 its_encode_cmd(cmd, GITS_CMD_MOVI);
443 its_encode_devid(cmd, desc->its_movi_cmd.dev->device_id);
Marc Zyngier591e5be2015-07-17 10:46:42 +0100444 its_encode_event_id(cmd, desc->its_movi_cmd.event_id);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000445 its_encode_collection(cmd, desc->its_movi_cmd.col->col_id);
446
447 its_fixup_cmd(cmd);
448
Marc Zyngier591e5be2015-07-17 10:46:42 +0100449 return col;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000450}
451
452static struct its_collection *its_build_discard_cmd(struct its_cmd_block *cmd,
453 struct its_cmd_desc *desc)
454{
Marc Zyngier591e5be2015-07-17 10:46:42 +0100455 struct its_collection *col;
456
457 col = dev_event_to_col(desc->its_discard_cmd.dev,
458 desc->its_discard_cmd.event_id);
459
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000460 its_encode_cmd(cmd, GITS_CMD_DISCARD);
461 its_encode_devid(cmd, desc->its_discard_cmd.dev->device_id);
462 its_encode_event_id(cmd, desc->its_discard_cmd.event_id);
463
464 its_fixup_cmd(cmd);
465
Marc Zyngier591e5be2015-07-17 10:46:42 +0100466 return col;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000467}
468
469static struct its_collection *its_build_inv_cmd(struct its_cmd_block *cmd,
470 struct its_cmd_desc *desc)
471{
Marc Zyngier591e5be2015-07-17 10:46:42 +0100472 struct its_collection *col;
473
474 col = dev_event_to_col(desc->its_inv_cmd.dev,
475 desc->its_inv_cmd.event_id);
476
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000477 its_encode_cmd(cmd, GITS_CMD_INV);
478 its_encode_devid(cmd, desc->its_inv_cmd.dev->device_id);
479 its_encode_event_id(cmd, desc->its_inv_cmd.event_id);
480
481 its_fixup_cmd(cmd);
482
Marc Zyngier591e5be2015-07-17 10:46:42 +0100483 return col;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000484}
485
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000486static struct its_collection *its_build_int_cmd(struct its_cmd_block *cmd,
487 struct its_cmd_desc *desc)
488{
489 struct its_collection *col;
490
491 col = dev_event_to_col(desc->its_int_cmd.dev,
492 desc->its_int_cmd.event_id);
493
494 its_encode_cmd(cmd, GITS_CMD_INT);
495 its_encode_devid(cmd, desc->its_int_cmd.dev->device_id);
496 its_encode_event_id(cmd, desc->its_int_cmd.event_id);
497
498 its_fixup_cmd(cmd);
499
500 return col;
501}
502
503static struct its_collection *its_build_clear_cmd(struct its_cmd_block *cmd,
504 struct its_cmd_desc *desc)
505{
506 struct its_collection *col;
507
508 col = dev_event_to_col(desc->its_clear_cmd.dev,
509 desc->its_clear_cmd.event_id);
510
511 its_encode_cmd(cmd, GITS_CMD_CLEAR);
512 its_encode_devid(cmd, desc->its_clear_cmd.dev->device_id);
513 its_encode_event_id(cmd, desc->its_clear_cmd.event_id);
514
515 its_fixup_cmd(cmd);
516
517 return col;
518}
519
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000520static struct its_collection *its_build_invall_cmd(struct its_cmd_block *cmd,
521 struct its_cmd_desc *desc)
522{
523 its_encode_cmd(cmd, GITS_CMD_INVALL);
524 its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id);
525
526 its_fixup_cmd(cmd);
527
528 return NULL;
529}
530
Marc Zyngiereb781922016-12-20 14:47:05 +0000531static struct its_vpe *its_build_vinvall_cmd(struct its_cmd_block *cmd,
532 struct its_cmd_desc *desc)
533{
534 its_encode_cmd(cmd, GITS_CMD_VINVALL);
535 its_encode_vpeid(cmd, desc->its_vinvall_cmd.vpe->vpe_id);
536
537 its_fixup_cmd(cmd);
538
539 return desc->its_vinvall_cmd.vpe;
540}
541
542static struct its_vpe *its_build_vmapp_cmd(struct its_cmd_block *cmd,
543 struct its_cmd_desc *desc)
544{
545 unsigned long vpt_addr;
546
547 vpt_addr = virt_to_phys(page_address(desc->its_vmapp_cmd.vpe->vpt_page));
548
549 its_encode_cmd(cmd, GITS_CMD_VMAPP);
550 its_encode_vpeid(cmd, desc->its_vmapp_cmd.vpe->vpe_id);
551 its_encode_valid(cmd, desc->its_vmapp_cmd.valid);
552 its_encode_target(cmd, desc->its_vmapp_cmd.col->target_address);
553 its_encode_vpt_addr(cmd, vpt_addr);
554 its_encode_vpt_size(cmd, LPI_NRBITS - 1);
555
556 its_fixup_cmd(cmd);
557
558 return desc->its_vmapp_cmd.vpe;
559}
560
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000561static struct its_vpe *its_build_vmapti_cmd(struct its_cmd_block *cmd,
562 struct its_cmd_desc *desc)
563{
564 u32 db;
565
566 if (desc->its_vmapti_cmd.db_enabled)
567 db = desc->its_vmapti_cmd.vpe->vpe_db_lpi;
568 else
569 db = 1023;
570
571 its_encode_cmd(cmd, GITS_CMD_VMAPTI);
572 its_encode_devid(cmd, desc->its_vmapti_cmd.dev->device_id);
573 its_encode_vpeid(cmd, desc->its_vmapti_cmd.vpe->vpe_id);
574 its_encode_event_id(cmd, desc->its_vmapti_cmd.event_id);
575 its_encode_db_phys_id(cmd, db);
576 its_encode_virt_id(cmd, desc->its_vmapti_cmd.virt_id);
577
578 its_fixup_cmd(cmd);
579
580 return desc->its_vmapti_cmd.vpe;
581}
582
583static struct its_vpe *its_build_vmovi_cmd(struct its_cmd_block *cmd,
584 struct its_cmd_desc *desc)
585{
586 u32 db;
587
588 if (desc->its_vmovi_cmd.db_enabled)
589 db = desc->its_vmovi_cmd.vpe->vpe_db_lpi;
590 else
591 db = 1023;
592
593 its_encode_cmd(cmd, GITS_CMD_VMOVI);
594 its_encode_devid(cmd, desc->its_vmovi_cmd.dev->device_id);
595 its_encode_vpeid(cmd, desc->its_vmovi_cmd.vpe->vpe_id);
596 its_encode_event_id(cmd, desc->its_vmovi_cmd.event_id);
597 its_encode_db_phys_id(cmd, db);
598 its_encode_db_valid(cmd, true);
599
600 its_fixup_cmd(cmd);
601
602 return desc->its_vmovi_cmd.vpe;
603}
604
Marc Zyngier3171a472016-12-20 15:17:28 +0000605static struct its_vpe *its_build_vmovp_cmd(struct its_cmd_block *cmd,
606 struct its_cmd_desc *desc)
607{
608 its_encode_cmd(cmd, GITS_CMD_VMOVP);
609 its_encode_seq_num(cmd, desc->its_vmovp_cmd.seq_num);
610 its_encode_its_list(cmd, desc->its_vmovp_cmd.its_list);
611 its_encode_vpeid(cmd, desc->its_vmovp_cmd.vpe->vpe_id);
612 its_encode_target(cmd, desc->its_vmovp_cmd.col->target_address);
613
614 its_fixup_cmd(cmd);
615
616 return desc->its_vmovp_cmd.vpe;
617}
618
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000619static u64 its_cmd_ptr_to_offset(struct its_node *its,
620 struct its_cmd_block *ptr)
621{
622 return (ptr - its->cmd_base) * sizeof(*ptr);
623}
624
625static int its_queue_full(struct its_node *its)
626{
627 int widx;
628 int ridx;
629
630 widx = its->cmd_write - its->cmd_base;
631 ridx = readl_relaxed(its->base + GITS_CREADR) / sizeof(struct its_cmd_block);
632
633 /* This is incredibly unlikely to happen, unless the ITS locks up. */
634 if (((widx + 1) % ITS_CMD_QUEUE_NR_ENTRIES) == ridx)
635 return 1;
636
637 return 0;
638}
639
640static struct its_cmd_block *its_allocate_entry(struct its_node *its)
641{
642 struct its_cmd_block *cmd;
643 u32 count = 1000000; /* 1s! */
644
645 while (its_queue_full(its)) {
646 count--;
647 if (!count) {
648 pr_err_ratelimited("ITS queue not draining\n");
649 return NULL;
650 }
651 cpu_relax();
652 udelay(1);
653 }
654
655 cmd = its->cmd_write++;
656
657 /* Handle queue wrapping */
658 if (its->cmd_write == (its->cmd_base + ITS_CMD_QUEUE_NR_ENTRIES))
659 its->cmd_write = its->cmd_base;
660
Marc Zyngier34d677a2016-12-19 17:16:45 +0000661 /* Clear command */
662 cmd->raw_cmd[0] = 0;
663 cmd->raw_cmd[1] = 0;
664 cmd->raw_cmd[2] = 0;
665 cmd->raw_cmd[3] = 0;
666
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000667 return cmd;
668}
669
670static struct its_cmd_block *its_post_commands(struct its_node *its)
671{
672 u64 wr = its_cmd_ptr_to_offset(its, its->cmd_write);
673
674 writel_relaxed(wr, its->base + GITS_CWRITER);
675
676 return its->cmd_write;
677}
678
679static void its_flush_cmd(struct its_node *its, struct its_cmd_block *cmd)
680{
681 /*
682 * Make sure the commands written to memory are observable by
683 * the ITS.
684 */
685 if (its->flags & ITS_FLAGS_CMDQ_NEEDS_FLUSHING)
Vladimir Murzin328191c2016-11-02 11:54:05 +0000686 gic_flush_dcache_to_poc(cmd, sizeof(*cmd));
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000687 else
688 dsb(ishst);
689}
690
691static void its_wait_for_range_completion(struct its_node *its,
692 struct its_cmd_block *from,
693 struct its_cmd_block *to)
694{
695 u64 rd_idx, from_idx, to_idx;
696 u32 count = 1000000; /* 1s! */
697
698 from_idx = its_cmd_ptr_to_offset(its, from);
699 to_idx = its_cmd_ptr_to_offset(its, to);
700
701 while (1) {
702 rd_idx = readl_relaxed(its->base + GITS_CREADR);
Marc Zyngier9bdd8b12017-08-19 10:16:02 +0100703
704 /* Direct case */
705 if (from_idx < to_idx && rd_idx >= to_idx)
706 break;
707
708 /* Wrapped case */
709 if (from_idx >= to_idx && rd_idx >= to_idx && rd_idx < from_idx)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000710 break;
711
712 count--;
713 if (!count) {
714 pr_err_ratelimited("ITS queue timeout\n");
715 return;
716 }
717 cpu_relax();
718 udelay(1);
719 }
720}
721
Marc Zyngiere4f90942016-12-19 17:56:32 +0000722/* Warning, macro hell follows */
723#define BUILD_SINGLE_CMD_FUNC(name, buildtype, synctype, buildfn) \
724void name(struct its_node *its, \
725 buildtype builder, \
726 struct its_cmd_desc *desc) \
727{ \
728 struct its_cmd_block *cmd, *sync_cmd, *next_cmd; \
729 synctype *sync_obj; \
730 unsigned long flags; \
731 \
732 raw_spin_lock_irqsave(&its->lock, flags); \
733 \
734 cmd = its_allocate_entry(its); \
735 if (!cmd) { /* We're soooooo screewed... */ \
736 raw_spin_unlock_irqrestore(&its->lock, flags); \
737 return; \
738 } \
739 sync_obj = builder(cmd, desc); \
740 its_flush_cmd(its, cmd); \
741 \
742 if (sync_obj) { \
743 sync_cmd = its_allocate_entry(its); \
744 if (!sync_cmd) \
745 goto post; \
746 \
747 buildfn(sync_cmd, sync_obj); \
748 its_flush_cmd(its, sync_cmd); \
749 } \
750 \
751post: \
752 next_cmd = its_post_commands(its); \
753 raw_spin_unlock_irqrestore(&its->lock, flags); \
754 \
755 its_wait_for_range_completion(its, cmd, next_cmd); \
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000756}
757
Marc Zyngiere4f90942016-12-19 17:56:32 +0000758static void its_build_sync_cmd(struct its_cmd_block *sync_cmd,
759 struct its_collection *sync_col)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000760{
Marc Zyngiere4f90942016-12-19 17:56:32 +0000761 its_encode_cmd(sync_cmd, GITS_CMD_SYNC);
762 its_encode_target(sync_cmd, sync_col->target_address);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000763
Marc Zyngiere4f90942016-12-19 17:56:32 +0000764 its_fixup_cmd(sync_cmd);
765}
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000766
Marc Zyngiere4f90942016-12-19 17:56:32 +0000767static BUILD_SINGLE_CMD_FUNC(its_send_single_command, its_cmd_builder_t,
768 struct its_collection, its_build_sync_cmd)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000769
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000770static void its_build_vsync_cmd(struct its_cmd_block *sync_cmd,
771 struct its_vpe *sync_vpe)
772{
773 its_encode_cmd(sync_cmd, GITS_CMD_VSYNC);
774 its_encode_vpeid(sync_cmd, sync_vpe->vpe_id);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000775
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000776 its_fixup_cmd(sync_cmd);
777}
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000778
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000779static BUILD_SINGLE_CMD_FUNC(its_send_single_vcommand, its_cmd_vbuilder_t,
780 struct its_vpe, its_build_vsync_cmd)
781
Marc Zyngier8d85dce2016-12-19 18:02:13 +0000782static void its_send_int(struct its_device *dev, u32 event_id)
783{
784 struct its_cmd_desc desc;
785
786 desc.its_int_cmd.dev = dev;
787 desc.its_int_cmd.event_id = event_id;
788
789 its_send_single_command(dev->its, its_build_int_cmd, &desc);
790}
791
792static void its_send_clear(struct its_device *dev, u32 event_id)
793{
794 struct its_cmd_desc desc;
795
796 desc.its_clear_cmd.dev = dev;
797 desc.its_clear_cmd.event_id = event_id;
798
799 its_send_single_command(dev->its, its_build_clear_cmd, &desc);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000800}
801
802static void its_send_inv(struct its_device *dev, u32 event_id)
803{
804 struct its_cmd_desc desc;
805
806 desc.its_inv_cmd.dev = dev;
807 desc.its_inv_cmd.event_id = event_id;
808
809 its_send_single_command(dev->its, its_build_inv_cmd, &desc);
810}
811
812static void its_send_mapd(struct its_device *dev, int valid)
813{
814 struct its_cmd_desc desc;
815
816 desc.its_mapd_cmd.dev = dev;
817 desc.its_mapd_cmd.valid = !!valid;
818
819 its_send_single_command(dev->its, its_build_mapd_cmd, &desc);
820}
821
822static void its_send_mapc(struct its_node *its, struct its_collection *col,
823 int valid)
824{
825 struct its_cmd_desc desc;
826
827 desc.its_mapc_cmd.col = col;
828 desc.its_mapc_cmd.valid = !!valid;
829
830 its_send_single_command(its, its_build_mapc_cmd, &desc);
831}
832
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000833static void its_send_mapti(struct its_device *dev, u32 irq_id, u32 id)
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000834{
835 struct its_cmd_desc desc;
836
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000837 desc.its_mapti_cmd.dev = dev;
838 desc.its_mapti_cmd.phys_id = irq_id;
839 desc.its_mapti_cmd.event_id = id;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000840
Marc Zyngier6a25ad32016-12-20 15:52:26 +0000841 its_send_single_command(dev->its, its_build_mapti_cmd, &desc);
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000842}
843
844static void its_send_movi(struct its_device *dev,
845 struct its_collection *col, u32 id)
846{
847 struct its_cmd_desc desc;
848
849 desc.its_movi_cmd.dev = dev;
850 desc.its_movi_cmd.col = col;
Marc Zyngier591e5be2015-07-17 10:46:42 +0100851 desc.its_movi_cmd.event_id = id;
Marc Zyngiercc2d3212014-11-24 14:35:11 +0000852
853 its_send_single_command(dev->its, its_build_movi_cmd, &desc);
854}
855
856static void its_send_discard(struct its_device *dev, u32 id)
857{
858 struct its_cmd_desc desc;
859
860 desc.its_discard_cmd.dev = dev;
861 desc.its_discard_cmd.event_id = id;
862
863 its_send_single_command(dev->its, its_build_discard_cmd, &desc);
864}
865
866static void its_send_invall(struct its_node *its, struct its_collection *col)
867{
868 struct its_cmd_desc desc;
869
870 desc.its_invall_cmd.col = col;
871
872 its_send_single_command(its, its_build_invall_cmd, &desc);
873}
Marc Zyngierc48ed512014-11-24 14:35:12 +0000874
Marc Zyngierd011e4e2016-12-20 09:44:41 +0000875static void its_send_vmapti(struct its_device *dev, u32 id)
876{
877 struct its_vlpi_map *map = &dev->event_map.vlpi_maps[id];
878 struct its_cmd_desc desc;
879
880 desc.its_vmapti_cmd.vpe = map->vpe;
881 desc.its_vmapti_cmd.dev = dev;
882 desc.its_vmapti_cmd.virt_id = map->vintid;
883 desc.its_vmapti_cmd.event_id = id;
884 desc.its_vmapti_cmd.db_enabled = map->db_enabled;
885
886 its_send_single_vcommand(dev->its, its_build_vmapti_cmd, &desc);
887}
888
889static void its_send_vmovi(struct its_device *dev, u32 id)
890{
891 struct its_vlpi_map *map = &dev->event_map.vlpi_maps[id];
892 struct its_cmd_desc desc;
893
894 desc.its_vmovi_cmd.vpe = map->vpe;
895 desc.its_vmovi_cmd.dev = dev;
896 desc.its_vmovi_cmd.event_id = id;
897 desc.its_vmovi_cmd.db_enabled = map->db_enabled;
898
899 its_send_single_vcommand(dev->its, its_build_vmovi_cmd, &desc);
900}
901
Marc Zyngiereb781922016-12-20 14:47:05 +0000902static void its_send_vmapp(struct its_vpe *vpe, bool valid)
903{
904 struct its_cmd_desc desc;
905 struct its_node *its;
906
907 desc.its_vmapp_cmd.vpe = vpe;
908 desc.its_vmapp_cmd.valid = valid;
909
910 list_for_each_entry(its, &its_nodes, entry) {
911 if (!its->is_v4)
912 continue;
913
914 desc.its_vmapp_cmd.col = &its->collections[vpe->col_idx];
915 its_send_single_vcommand(its, its_build_vmapp_cmd, &desc);
916 }
917}
918
Marc Zyngier3171a472016-12-20 15:17:28 +0000919static void its_send_vmovp(struct its_vpe *vpe)
920{
921 struct its_cmd_desc desc;
922 struct its_node *its;
923 unsigned long flags;
924 int col_id = vpe->col_idx;
925
926 desc.its_vmovp_cmd.vpe = vpe;
927 desc.its_vmovp_cmd.its_list = (u16)its_list_map;
928
929 if (!its_list_map) {
930 its = list_first_entry(&its_nodes, struct its_node, entry);
931 desc.its_vmovp_cmd.seq_num = 0;
932 desc.its_vmovp_cmd.col = &its->collections[col_id];
933 its_send_single_vcommand(its, its_build_vmovp_cmd, &desc);
934 return;
935 }
936
937 /*
938 * Yet another marvel of the architecture. If using the
939 * its_list "feature", we need to make sure that all ITSs
940 * receive all VMOVP commands in the same order. The only way
941 * to guarantee this is to make vmovp a serialization point.
942 *
943 * Wall <-- Head.
944 */
945 raw_spin_lock_irqsave(&vmovp_lock, flags);
946
947 desc.its_vmovp_cmd.seq_num = vmovp_seq_num++;
948
949 /* Emit VMOVPs */
950 list_for_each_entry(its, &its_nodes, entry) {
951 if (!its->is_v4)
952 continue;
953
954 desc.its_vmovp_cmd.col = &its->collections[col_id];
955 its_send_single_vcommand(its, its_build_vmovp_cmd, &desc);
956 }
957
958 raw_spin_unlock_irqrestore(&vmovp_lock, flags);
959}
960
Marc Zyngiereb781922016-12-20 14:47:05 +0000961static void its_send_vinvall(struct its_vpe *vpe)
962{
963 struct its_cmd_desc desc;
964 struct its_node *its;
965
966 desc.its_vinvall_cmd.vpe = vpe;
967
968 list_for_each_entry(its, &its_nodes, entry) {
969 if (!its->is_v4)
970 continue;
971 its_send_single_vcommand(its, its_build_vinvall_cmd, &desc);
972 }
973}
974
Marc Zyngierc48ed512014-11-24 14:35:12 +0000975/*
976 * irqchip functions - assumes MSI, mostly.
977 */
978
979static inline u32 its_get_event_id(struct irq_data *d)
980{
981 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
Marc Zyngier591e5be2015-07-17 10:46:42 +0100982 return d->hwirq - its_dev->event_map.lpi_base;
Marc Zyngierc48ed512014-11-24 14:35:12 +0000983}
984
Marc Zyngier015ec032016-12-20 09:54:57 +0000985static void lpi_write_config(struct irq_data *d, u8 clr, u8 set)
Marc Zyngierc48ed512014-11-24 14:35:12 +0000986{
Marc Zyngier015ec032016-12-20 09:54:57 +0000987 irq_hw_number_t hwirq;
Marc Zyngieradcdb942016-12-19 19:18:13 +0000988 struct page *prop_page;
989 u8 *cfg;
Marc Zyngierc48ed512014-11-24 14:35:12 +0000990
Marc Zyngier015ec032016-12-20 09:54:57 +0000991 if (irqd_is_forwarded_to_vcpu(d)) {
992 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
993 u32 event = its_get_event_id(d);
994
995 prop_page = its_dev->event_map.vm->vprop_page;
996 hwirq = its_dev->event_map.vlpi_maps[event].vintid;
997 } else {
998 prop_page = gic_rdists->prop_page;
999 hwirq = d->hwirq;
1000 }
Marc Zyngieradcdb942016-12-19 19:18:13 +00001001
1002 cfg = page_address(prop_page) + hwirq - 8192;
1003 *cfg &= ~clr;
Marc Zyngier015ec032016-12-20 09:54:57 +00001004 *cfg |= set | LPI_PROP_GROUP1;
Marc Zyngierc48ed512014-11-24 14:35:12 +00001005
1006 /*
1007 * Make the above write visible to the redistributors.
1008 * And yes, we're flushing exactly: One. Single. Byte.
1009 * Humpf...
1010 */
1011 if (gic_rdists->flags & RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING)
Vladimir Murzin328191c2016-11-02 11:54:05 +00001012 gic_flush_dcache_to_poc(cfg, sizeof(*cfg));
Marc Zyngierc48ed512014-11-24 14:35:12 +00001013 else
1014 dsb(ishst);
Marc Zyngier015ec032016-12-20 09:54:57 +00001015}
1016
1017static void lpi_update_config(struct irq_data *d, u8 clr, u8 set)
1018{
1019 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1020
1021 lpi_write_config(d, clr, set);
Marc Zyngieradcdb942016-12-19 19:18:13 +00001022 its_send_inv(its_dev, its_get_event_id(d));
Marc Zyngierc48ed512014-11-24 14:35:12 +00001023}
1024
Marc Zyngier015ec032016-12-20 09:54:57 +00001025static void its_vlpi_set_doorbell(struct irq_data *d, bool enable)
1026{
1027 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1028 u32 event = its_get_event_id(d);
1029
1030 if (its_dev->event_map.vlpi_maps[event].db_enabled == enable)
1031 return;
1032
1033 its_dev->event_map.vlpi_maps[event].db_enabled = enable;
1034
1035 /*
1036 * More fun with the architecture:
1037 *
1038 * Ideally, we'd issue a VMAPTI to set the doorbell to its LPI
1039 * value or to 1023, depending on the enable bit. But that
1040 * would be issueing a mapping for an /existing/ DevID+EventID
1041 * pair, which is UNPREDICTABLE. Instead, let's issue a VMOVI
1042 * to the /same/ vPE, using this opportunity to adjust the
1043 * doorbell. Mouahahahaha. We loves it, Precious.
1044 */
1045 its_send_vmovi(its_dev, event);
Marc Zyngierc48ed512014-11-24 14:35:12 +00001046}
1047
1048static void its_mask_irq(struct irq_data *d)
1049{
Marc Zyngier015ec032016-12-20 09:54:57 +00001050 if (irqd_is_forwarded_to_vcpu(d))
1051 its_vlpi_set_doorbell(d, false);
1052
Marc Zyngieradcdb942016-12-19 19:18:13 +00001053 lpi_update_config(d, LPI_PROP_ENABLED, 0);
Marc Zyngierc48ed512014-11-24 14:35:12 +00001054}
1055
1056static void its_unmask_irq(struct irq_data *d)
1057{
Marc Zyngier015ec032016-12-20 09:54:57 +00001058 if (irqd_is_forwarded_to_vcpu(d))
1059 its_vlpi_set_doorbell(d, true);
1060
Marc Zyngieradcdb942016-12-19 19:18:13 +00001061 lpi_update_config(d, 0, LPI_PROP_ENABLED);
Marc Zyngierc48ed512014-11-24 14:35:12 +00001062}
1063
Marc Zyngierc48ed512014-11-24 14:35:12 +00001064static int its_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
1065 bool force)
1066{
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02001067 unsigned int cpu;
1068 const struct cpumask *cpu_mask = cpu_online_mask;
Marc Zyngierc48ed512014-11-24 14:35:12 +00001069 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1070 struct its_collection *target_col;
1071 u32 id = its_get_event_id(d);
1072
Marc Zyngier015ec032016-12-20 09:54:57 +00001073 /* A forwarded interrupt should use irq_set_vcpu_affinity */
1074 if (irqd_is_forwarded_to_vcpu(d))
1075 return -EINVAL;
1076
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02001077 /* lpi cannot be routed to a redistributor that is on a foreign node */
1078 if (its_dev->its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144) {
1079 if (its_dev->its->numa_node >= 0) {
1080 cpu_mask = cpumask_of_node(its_dev->its->numa_node);
1081 if (!cpumask_intersects(mask_val, cpu_mask))
1082 return -EINVAL;
1083 }
1084 }
1085
1086 cpu = cpumask_any_and(mask_val, cpu_mask);
1087
Marc Zyngierc48ed512014-11-24 14:35:12 +00001088 if (cpu >= nr_cpu_ids)
1089 return -EINVAL;
1090
MaJun8b8d94a2017-05-18 16:19:13 +08001091 /* don't set the affinity when the target cpu is same as current one */
1092 if (cpu != its_dev->event_map.col_map[id]) {
1093 target_col = &its_dev->its->collections[cpu];
1094 its_send_movi(its_dev, target_col, id);
1095 its_dev->event_map.col_map[id] = cpu;
Marc Zyngier0d224d32017-08-18 09:39:18 +01001096 irq_data_update_effective_affinity(d, cpumask_of(cpu));
MaJun8b8d94a2017-05-18 16:19:13 +08001097 }
Marc Zyngierc48ed512014-11-24 14:35:12 +00001098
1099 return IRQ_SET_MASK_OK_DONE;
1100}
1101
Marc Zyngierb48ac832014-11-24 14:35:16 +00001102static void its_irq_compose_msi_msg(struct irq_data *d, struct msi_msg *msg)
1103{
1104 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1105 struct its_node *its;
1106 u64 addr;
1107
1108 its = its_dev->its;
1109 addr = its->phys_base + GITS_TRANSLATER;
1110
Vladimir Murzinb11283e2016-11-02 11:54:03 +00001111 msg->address_lo = lower_32_bits(addr);
1112 msg->address_hi = upper_32_bits(addr);
Marc Zyngierb48ac832014-11-24 14:35:16 +00001113 msg->data = its_get_event_id(d);
Robin Murphy44bb7e22016-09-12 17:13:59 +01001114
1115 iommu_dma_map_msi_msg(d->irq, msg);
Marc Zyngierb48ac832014-11-24 14:35:16 +00001116}
1117
Marc Zyngier8d85dce2016-12-19 18:02:13 +00001118static int its_irq_set_irqchip_state(struct irq_data *d,
1119 enum irqchip_irq_state which,
1120 bool state)
1121{
1122 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1123 u32 event = its_get_event_id(d);
1124
1125 if (which != IRQCHIP_STATE_PENDING)
1126 return -EINVAL;
1127
1128 if (state)
1129 its_send_int(its_dev, event);
1130 else
1131 its_send_clear(its_dev, event);
1132
1133 return 0;
1134}
1135
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001136static int its_vlpi_map(struct irq_data *d, struct its_cmd_info *info)
1137{
1138 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1139 u32 event = its_get_event_id(d);
1140 int ret = 0;
1141
1142 if (!info->map)
1143 return -EINVAL;
1144
1145 mutex_lock(&its_dev->event_map.vlpi_lock);
1146
1147 if (!its_dev->event_map.vm) {
1148 struct its_vlpi_map *maps;
1149
1150 maps = kzalloc(sizeof(*maps) * its_dev->event_map.nr_lpis,
1151 GFP_KERNEL);
1152 if (!maps) {
1153 ret = -ENOMEM;
1154 goto out;
1155 }
1156
1157 its_dev->event_map.vm = info->map->vm;
1158 its_dev->event_map.vlpi_maps = maps;
1159 } else if (its_dev->event_map.vm != info->map->vm) {
1160 ret = -EINVAL;
1161 goto out;
1162 }
1163
1164 /* Get our private copy of the mapping information */
1165 its_dev->event_map.vlpi_maps[event] = *info->map;
1166
1167 if (irqd_is_forwarded_to_vcpu(d)) {
1168 /* Already mapped, move it around */
1169 its_send_vmovi(its_dev, event);
1170 } else {
1171 /* Drop the physical mapping */
1172 its_send_discard(its_dev, event);
1173
1174 /* and install the virtual one */
1175 its_send_vmapti(its_dev, event);
1176 irqd_set_forwarded_to_vcpu(d);
1177
1178 /* Increment the number of VLPIs */
1179 its_dev->event_map.nr_vlpis++;
1180 }
1181
1182out:
1183 mutex_unlock(&its_dev->event_map.vlpi_lock);
1184 return ret;
1185}
1186
1187static int its_vlpi_get(struct irq_data *d, struct its_cmd_info *info)
1188{
1189 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1190 u32 event = its_get_event_id(d);
1191 int ret = 0;
1192
1193 mutex_lock(&its_dev->event_map.vlpi_lock);
1194
1195 if (!its_dev->event_map.vm ||
1196 !its_dev->event_map.vlpi_maps[event].vm) {
1197 ret = -EINVAL;
1198 goto out;
1199 }
1200
1201 /* Copy our mapping information to the incoming request */
1202 *info->map = its_dev->event_map.vlpi_maps[event];
1203
1204out:
1205 mutex_unlock(&its_dev->event_map.vlpi_lock);
1206 return ret;
1207}
1208
1209static int its_vlpi_unmap(struct irq_data *d)
1210{
1211 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1212 u32 event = its_get_event_id(d);
1213 int ret = 0;
1214
1215 mutex_lock(&its_dev->event_map.vlpi_lock);
1216
1217 if (!its_dev->event_map.vm || !irqd_is_forwarded_to_vcpu(d)) {
1218 ret = -EINVAL;
1219 goto out;
1220 }
1221
1222 /* Drop the virtual mapping */
1223 its_send_discard(its_dev, event);
1224
1225 /* and restore the physical one */
1226 irqd_clr_forwarded_to_vcpu(d);
1227 its_send_mapti(its_dev, d->hwirq, event);
1228 lpi_update_config(d, 0xff, (LPI_PROP_DEFAULT_PRIO |
1229 LPI_PROP_ENABLED |
1230 LPI_PROP_GROUP1));
1231
1232 /*
1233 * Drop the refcount and make the device available again if
1234 * this was the last VLPI.
1235 */
1236 if (!--its_dev->event_map.nr_vlpis) {
1237 its_dev->event_map.vm = NULL;
1238 kfree(its_dev->event_map.vlpi_maps);
1239 }
1240
1241out:
1242 mutex_unlock(&its_dev->event_map.vlpi_lock);
1243 return ret;
1244}
1245
Marc Zyngier015ec032016-12-20 09:54:57 +00001246static int its_vlpi_prop_update(struct irq_data *d, struct its_cmd_info *info)
1247{
1248 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1249
1250 if (!its_dev->event_map.vm || !irqd_is_forwarded_to_vcpu(d))
1251 return -EINVAL;
1252
1253 if (info->cmd_type == PROP_UPDATE_AND_INV_VLPI)
1254 lpi_update_config(d, 0xff, info->config);
1255 else
1256 lpi_write_config(d, 0xff, info->config);
1257 its_vlpi_set_doorbell(d, !!(info->config & LPI_PROP_ENABLED));
1258
1259 return 0;
1260}
1261
Marc Zyngierc808eea2016-12-20 09:31:20 +00001262static int its_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu_info)
1263{
1264 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1265 struct its_cmd_info *info = vcpu_info;
1266
1267 /* Need a v4 ITS */
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001268 if (!its_dev->its->is_v4)
Marc Zyngierc808eea2016-12-20 09:31:20 +00001269 return -EINVAL;
1270
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001271 /* Unmap request? */
1272 if (!info)
1273 return its_vlpi_unmap(d);
1274
Marc Zyngierc808eea2016-12-20 09:31:20 +00001275 switch (info->cmd_type) {
1276 case MAP_VLPI:
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001277 return its_vlpi_map(d, info);
Marc Zyngierc808eea2016-12-20 09:31:20 +00001278
1279 case GET_VLPI:
Marc Zyngierd011e4e2016-12-20 09:44:41 +00001280 return its_vlpi_get(d, info);
Marc Zyngierc808eea2016-12-20 09:31:20 +00001281
1282 case PROP_UPDATE_VLPI:
1283 case PROP_UPDATE_AND_INV_VLPI:
Marc Zyngier015ec032016-12-20 09:54:57 +00001284 return its_vlpi_prop_update(d, info);
Marc Zyngierc808eea2016-12-20 09:31:20 +00001285
1286 default:
1287 return -EINVAL;
1288 }
1289}
1290
Marc Zyngierc48ed512014-11-24 14:35:12 +00001291static struct irq_chip its_irq_chip = {
1292 .name = "ITS",
1293 .irq_mask = its_mask_irq,
1294 .irq_unmask = its_unmask_irq,
Ashok Kumar004fa082016-02-11 05:38:53 -08001295 .irq_eoi = irq_chip_eoi_parent,
Marc Zyngierc48ed512014-11-24 14:35:12 +00001296 .irq_set_affinity = its_set_affinity,
Marc Zyngierb48ac832014-11-24 14:35:16 +00001297 .irq_compose_msi_msg = its_irq_compose_msi_msg,
Marc Zyngier8d85dce2016-12-19 18:02:13 +00001298 .irq_set_irqchip_state = its_irq_set_irqchip_state,
Marc Zyngierc808eea2016-12-20 09:31:20 +00001299 .irq_set_vcpu_affinity = its_irq_set_vcpu_affinity,
Marc Zyngierb48ac832014-11-24 14:35:16 +00001300};
1301
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001302/*
1303 * How we allocate LPIs:
1304 *
1305 * The GIC has id_bits bits for interrupt identifiers. From there, we
1306 * must subtract 8192 which are reserved for SGIs/PPIs/SPIs. Then, as
1307 * we allocate LPIs by chunks of 32, we can shift the whole thing by 5
1308 * bits to the right.
1309 *
1310 * This gives us (((1UL << id_bits) - 8192) >> 5) possible allocations.
1311 */
1312#define IRQS_PER_CHUNK_SHIFT 5
1313#define IRQS_PER_CHUNK (1 << IRQS_PER_CHUNK_SHIFT)
Shanker Donthineni6c31e122017-06-22 18:19:14 -05001314#define ITS_MAX_LPI_NRBITS 16 /* 64K LPIs */
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001315
1316static unsigned long *lpi_bitmap;
1317static u32 lpi_chunks;
1318static DEFINE_SPINLOCK(lpi_lock);
1319
1320static int its_lpi_to_chunk(int lpi)
1321{
1322 return (lpi - 8192) >> IRQS_PER_CHUNK_SHIFT;
1323}
1324
1325static int its_chunk_to_lpi(int chunk)
1326{
1327 return (chunk << IRQS_PER_CHUNK_SHIFT) + 8192;
1328}
1329
Tomasz Nowicki04a0e4d2016-01-19 14:11:18 +01001330static int __init its_lpi_init(u32 id_bits)
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001331{
1332 lpi_chunks = its_lpi_to_chunk(1UL << id_bits);
1333
1334 lpi_bitmap = kzalloc(BITS_TO_LONGS(lpi_chunks) * sizeof(long),
1335 GFP_KERNEL);
1336 if (!lpi_bitmap) {
1337 lpi_chunks = 0;
1338 return -ENOMEM;
1339 }
1340
1341 pr_info("ITS: Allocated %d chunks for LPIs\n", (int)lpi_chunks);
1342 return 0;
1343}
1344
1345static unsigned long *its_lpi_alloc_chunks(int nr_irqs, int *base, int *nr_ids)
1346{
1347 unsigned long *bitmap = NULL;
1348 int chunk_id;
1349 int nr_chunks;
1350 int i;
1351
1352 nr_chunks = DIV_ROUND_UP(nr_irqs, IRQS_PER_CHUNK);
1353
1354 spin_lock(&lpi_lock);
1355
1356 do {
1357 chunk_id = bitmap_find_next_zero_area(lpi_bitmap, lpi_chunks,
1358 0, nr_chunks, 0);
1359 if (chunk_id < lpi_chunks)
1360 break;
1361
1362 nr_chunks--;
1363 } while (nr_chunks > 0);
1364
1365 if (!nr_chunks)
1366 goto out;
1367
1368 bitmap = kzalloc(BITS_TO_LONGS(nr_chunks * IRQS_PER_CHUNK) * sizeof (long),
1369 GFP_ATOMIC);
1370 if (!bitmap)
1371 goto out;
1372
1373 for (i = 0; i < nr_chunks; i++)
1374 set_bit(chunk_id + i, lpi_bitmap);
1375
1376 *base = its_chunk_to_lpi(chunk_id);
1377 *nr_ids = nr_chunks * IRQS_PER_CHUNK;
1378
1379out:
1380 spin_unlock(&lpi_lock);
1381
Marc Zyngierc8415b92015-10-02 16:44:05 +01001382 if (!bitmap)
1383 *base = *nr_ids = 0;
1384
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001385 return bitmap;
1386}
1387
Marc Zyngiercf2be8b2016-12-19 18:49:59 +00001388static void its_lpi_free_chunks(unsigned long *bitmap, int base, int nr_ids)
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001389{
1390 int lpi;
1391
1392 spin_lock(&lpi_lock);
1393
1394 for (lpi = base; lpi < (base + nr_ids); lpi += IRQS_PER_CHUNK) {
1395 int chunk = its_lpi_to_chunk(lpi);
Marc Zyngiercf2be8b2016-12-19 18:49:59 +00001396
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001397 BUG_ON(chunk > lpi_chunks);
1398 if (test_bit(chunk, lpi_bitmap)) {
1399 clear_bit(chunk, lpi_bitmap);
1400 } else {
1401 pr_err("Bad LPI chunk %d\n", chunk);
1402 }
1403 }
1404
1405 spin_unlock(&lpi_lock);
1406
Marc Zyngiercf2be8b2016-12-19 18:49:59 +00001407 kfree(bitmap);
Marc Zyngierbf9529f2014-11-24 14:35:13 +00001408}
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001409
Marc Zyngier0e5ccf92016-12-19 18:15:05 +00001410static struct page *its_allocate_prop_table(gfp_t gfp_flags)
1411{
1412 struct page *prop_page;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001413
Marc Zyngier0e5ccf92016-12-19 18:15:05 +00001414 prop_page = alloc_pages(gfp_flags, get_order(LPI_PROPBASE_SZ));
1415 if (!prop_page)
1416 return NULL;
1417
1418 /* Priority 0xa0, Group-1, disabled */
1419 memset(page_address(prop_page),
1420 LPI_PROP_DEFAULT_PRIO | LPI_PROP_GROUP1,
1421 LPI_PROPBASE_SZ);
1422
1423 /* Make sure the GIC will observe the written configuration */
1424 gic_flush_dcache_to_poc(page_address(prop_page), LPI_PROPBASE_SZ);
1425
1426 return prop_page;
1427}
1428
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00001429static void its_free_prop_table(struct page *prop_page)
1430{
1431 free_pages((unsigned long)page_address(prop_page),
1432 get_order(LPI_PROPBASE_SZ));
1433}
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001434
1435static int __init its_alloc_lpi_tables(void)
1436{
1437 phys_addr_t paddr;
1438
Shanker Donthineni6c31e122017-06-22 18:19:14 -05001439 lpi_id_bits = min_t(u32, gic_rdists->id_bits, ITS_MAX_LPI_NRBITS);
Marc Zyngier0e5ccf92016-12-19 18:15:05 +00001440 gic_rdists->prop_page = its_allocate_prop_table(GFP_NOWAIT);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001441 if (!gic_rdists->prop_page) {
1442 pr_err("Failed to allocate PROPBASE\n");
1443 return -ENOMEM;
1444 }
1445
1446 paddr = page_to_phys(gic_rdists->prop_page);
1447 pr_info("GIC: using LPI property table @%pa\n", &paddr);
1448
Shanker Donthineni6c31e122017-06-22 18:19:14 -05001449 return its_lpi_init(lpi_id_bits);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001450}
1451
1452static const char *its_base_type_string[] = {
1453 [GITS_BASER_TYPE_DEVICE] = "Devices",
1454 [GITS_BASER_TYPE_VCPU] = "Virtual CPUs",
Marc Zyngier4f46de92016-12-20 15:50:14 +00001455 [GITS_BASER_TYPE_RESERVED3] = "Reserved (3)",
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001456 [GITS_BASER_TYPE_COLLECTION] = "Interrupt Collections",
1457 [GITS_BASER_TYPE_RESERVED5] = "Reserved (5)",
1458 [GITS_BASER_TYPE_RESERVED6] = "Reserved (6)",
1459 [GITS_BASER_TYPE_RESERVED7] = "Reserved (7)",
1460};
1461
Shanker Donthineni2d81d422016-06-06 18:17:28 -05001462static u64 its_read_baser(struct its_node *its, struct its_baser *baser)
1463{
1464 u32 idx = baser - its->tables;
1465
Vladimir Murzin0968a612016-11-02 11:54:06 +00001466 return gits_read_baser(its->base + GITS_BASER + (idx << 3));
Shanker Donthineni2d81d422016-06-06 18:17:28 -05001467}
1468
1469static void its_write_baser(struct its_node *its, struct its_baser *baser,
1470 u64 val)
1471{
1472 u32 idx = baser - its->tables;
1473
Vladimir Murzin0968a612016-11-02 11:54:06 +00001474 gits_write_baser(val, its->base + GITS_BASER + (idx << 3));
Shanker Donthineni2d81d422016-06-06 18:17:28 -05001475 baser->val = its_read_baser(its, baser);
1476}
1477
Shanker Donthineni93473592016-06-06 18:17:30 -05001478static int its_setup_baser(struct its_node *its, struct its_baser *baser,
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001479 u64 cache, u64 shr, u32 psz, u32 order,
1480 bool indirect)
Shanker Donthineni93473592016-06-06 18:17:30 -05001481{
1482 u64 val = its_read_baser(its, baser);
1483 u64 esz = GITS_BASER_ENTRY_SIZE(val);
1484 u64 type = GITS_BASER_TYPE(val);
Shanker Donthineni30ae9612017-10-09 11:46:55 -05001485 u64 baser_phys, tmp;
Shanker Donthineni93473592016-06-06 18:17:30 -05001486 u32 alloc_pages;
1487 void *base;
Shanker Donthineni93473592016-06-06 18:17:30 -05001488
1489retry_alloc_baser:
1490 alloc_pages = (PAGE_ORDER_TO_SIZE(order) / psz);
1491 if (alloc_pages > GITS_BASER_PAGES_MAX) {
1492 pr_warn("ITS@%pa: %s too large, reduce ITS pages %u->%u\n",
1493 &its->phys_base, its_base_type_string[type],
1494 alloc_pages, GITS_BASER_PAGES_MAX);
1495 alloc_pages = GITS_BASER_PAGES_MAX;
1496 order = get_order(GITS_BASER_PAGES_MAX * psz);
1497 }
1498
1499 base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
1500 if (!base)
1501 return -ENOMEM;
1502
Shanker Donthineni30ae9612017-10-09 11:46:55 -05001503 baser_phys = virt_to_phys(base);
1504
1505 /* Check if the physical address of the memory is above 48bits */
1506 if (IS_ENABLED(CONFIG_ARM64_64K_PAGES) && (baser_phys >> 48)) {
1507
1508 /* 52bit PA is supported only when PageSize=64K */
1509 if (psz != SZ_64K) {
1510 pr_err("ITS: no 52bit PA support when psz=%d\n", psz);
1511 free_pages((unsigned long)base, order);
1512 return -ENXIO;
1513 }
1514
1515 /* Convert 52bit PA to 48bit field */
1516 baser_phys = GITS_BASER_PHYS_52_to_48(baser_phys);
1517 }
1518
Shanker Donthineni93473592016-06-06 18:17:30 -05001519retry_baser:
Shanker Donthineni30ae9612017-10-09 11:46:55 -05001520 val = (baser_phys |
Shanker Donthineni93473592016-06-06 18:17:30 -05001521 (type << GITS_BASER_TYPE_SHIFT) |
1522 ((esz - 1) << GITS_BASER_ENTRY_SIZE_SHIFT) |
1523 ((alloc_pages - 1) << GITS_BASER_PAGES_SHIFT) |
1524 cache |
1525 shr |
1526 GITS_BASER_VALID);
1527
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001528 val |= indirect ? GITS_BASER_INDIRECT : 0x0;
1529
Shanker Donthineni93473592016-06-06 18:17:30 -05001530 switch (psz) {
1531 case SZ_4K:
1532 val |= GITS_BASER_PAGE_SIZE_4K;
1533 break;
1534 case SZ_16K:
1535 val |= GITS_BASER_PAGE_SIZE_16K;
1536 break;
1537 case SZ_64K:
1538 val |= GITS_BASER_PAGE_SIZE_64K;
1539 break;
1540 }
1541
1542 its_write_baser(its, baser, val);
1543 tmp = baser->val;
1544
1545 if ((val ^ tmp) & GITS_BASER_SHAREABILITY_MASK) {
1546 /*
1547 * Shareability didn't stick. Just use
1548 * whatever the read reported, which is likely
1549 * to be the only thing this redistributor
1550 * supports. If that's zero, make it
1551 * non-cacheable as well.
1552 */
1553 shr = tmp & GITS_BASER_SHAREABILITY_MASK;
1554 if (!shr) {
1555 cache = GITS_BASER_nC;
Vladimir Murzin328191c2016-11-02 11:54:05 +00001556 gic_flush_dcache_to_poc(base, PAGE_ORDER_TO_SIZE(order));
Shanker Donthineni93473592016-06-06 18:17:30 -05001557 }
1558 goto retry_baser;
1559 }
1560
1561 if ((val ^ tmp) & GITS_BASER_PAGE_SIZE_MASK) {
1562 /*
1563 * Page size didn't stick. Let's try a smaller
1564 * size and retry. If we reach 4K, then
1565 * something is horribly wrong...
1566 */
1567 free_pages((unsigned long)base, order);
1568 baser->base = NULL;
1569
1570 switch (psz) {
1571 case SZ_16K:
1572 psz = SZ_4K;
1573 goto retry_alloc_baser;
1574 case SZ_64K:
1575 psz = SZ_16K;
1576 goto retry_alloc_baser;
1577 }
1578 }
1579
1580 if (val != tmp) {
Vladimir Murzinb11283e2016-11-02 11:54:03 +00001581 pr_err("ITS@%pa: %s doesn't stick: %llx %llx\n",
Shanker Donthineni93473592016-06-06 18:17:30 -05001582 &its->phys_base, its_base_type_string[type],
Vladimir Murzinb11283e2016-11-02 11:54:03 +00001583 val, tmp);
Shanker Donthineni93473592016-06-06 18:17:30 -05001584 free_pages((unsigned long)base, order);
1585 return -ENXIO;
1586 }
1587
1588 baser->order = order;
1589 baser->base = base;
1590 baser->psz = psz;
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001591 tmp = indirect ? GITS_LVL1_ENTRY_SIZE : esz;
Shanker Donthineni93473592016-06-06 18:17:30 -05001592
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001593 pr_info("ITS@%pa: allocated %d %s @%lx (%s, esz %d, psz %dK, shr %d)\n",
Vladimir Murzind524eaa2016-11-02 11:54:04 +00001594 &its->phys_base, (int)(PAGE_ORDER_TO_SIZE(order) / (int)tmp),
Shanker Donthineni93473592016-06-06 18:17:30 -05001595 its_base_type_string[type],
1596 (unsigned long)virt_to_phys(base),
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001597 indirect ? "indirect" : "flat", (int)esz,
Shanker Donthineni93473592016-06-06 18:17:30 -05001598 psz / SZ_1K, (int)shr >> GITS_BASER_SHAREABILITY_SHIFT);
1599
1600 return 0;
1601}
1602
Marc Zyngier4cacac52016-12-19 18:18:34 +00001603static bool its_parse_indirect_baser(struct its_node *its,
1604 struct its_baser *baser,
Shanker Donthineni32bd44d2017-10-07 15:43:48 -05001605 u32 psz, u32 *order, u32 ids)
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001606{
Marc Zyngier4cacac52016-12-19 18:18:34 +00001607 u64 tmp = its_read_baser(its, baser);
1608 u64 type = GITS_BASER_TYPE(tmp);
1609 u64 esz = GITS_BASER_ENTRY_SIZE(tmp);
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06001610 u64 val = GITS_BASER_InnerShareable | GITS_BASER_RaWaWb;
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001611 u32 new_order = *order;
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001612 bool indirect = false;
1613
1614 /* No need to enable Indirection if memory requirement < (psz*2)bytes */
1615 if ((esz << ids) > (psz * 2)) {
1616 /*
1617 * Find out whether hw supports a single or two-level table by
1618 * table by reading bit at offset '62' after writing '1' to it.
1619 */
1620 its_write_baser(its, baser, val | GITS_BASER_INDIRECT);
1621 indirect = !!(baser->val & GITS_BASER_INDIRECT);
1622
1623 if (indirect) {
1624 /*
1625 * The size of the lvl2 table is equal to ITS page size
1626 * which is 'psz'. For computing lvl1 table size,
1627 * subtract ID bits that sparse lvl2 table from 'ids'
1628 * which is reported by ITS hardware times lvl1 table
1629 * entry size.
1630 */
Vladimir Murzind524eaa2016-11-02 11:54:04 +00001631 ids -= ilog2(psz / (int)esz);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001632 esz = GITS_LVL1_ENTRY_SIZE;
1633 }
1634 }
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001635
1636 /*
1637 * Allocate as many entries as required to fit the
1638 * range of device IDs that the ITS can grok... The ID
1639 * space being incredibly sparse, this results in a
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001640 * massive waste of memory if two-level device table
1641 * feature is not supported by hardware.
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001642 */
1643 new_order = max_t(u32, get_order(esz << ids), new_order);
1644 if (new_order >= MAX_ORDER) {
1645 new_order = MAX_ORDER - 1;
Vladimir Murzind524eaa2016-11-02 11:54:04 +00001646 ids = ilog2(PAGE_ORDER_TO_SIZE(new_order) / (int)esz);
Marc Zyngier4cacac52016-12-19 18:18:34 +00001647 pr_warn("ITS@%pa: %s Table too large, reduce ids %u->%u\n",
1648 &its->phys_base, its_base_type_string[type],
1649 its->device_ids, ids);
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001650 }
1651
1652 *order = new_order;
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001653
1654 return indirect;
Shanker Donthineni4b75c452016-06-06 18:17:29 -05001655}
1656
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001657static void its_free_tables(struct its_node *its)
1658{
1659 int i;
1660
1661 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
Shanker Donthineni1a485f42016-02-01 20:19:44 -06001662 if (its->tables[i].base) {
1663 free_pages((unsigned long)its->tables[i].base,
1664 its->tables[i].order);
1665 its->tables[i].base = NULL;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001666 }
1667 }
1668}
1669
Shanker Donthineni0e0b0f62016-06-06 18:17:31 -05001670static int its_alloc_tables(struct its_node *its)
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001671{
Marc Zyngier589ce5f2016-10-14 15:13:07 +01001672 u64 typer = gic_read_typer(its->base + GITS_TYPER);
Shanker Donthineni93473592016-06-06 18:17:30 -05001673 u32 ids = GITS_TYPER_DEVBITS(typer);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001674 u64 shr = GITS_BASER_InnerShareable;
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06001675 u64 cache = GITS_BASER_RaWaWb;
Shanker Donthineni93473592016-06-06 18:17:30 -05001676 u32 psz = SZ_64K;
1677 int err, i;
Robert Richter94100972015-09-21 22:58:38 +02001678
1679 if (its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_22375) {
1680 /*
Shanker Donthineni93473592016-06-06 18:17:30 -05001681 * erratum 22375: only alloc 8MB table size
1682 * erratum 24313: ignore memory access type
1683 */
1684 cache = GITS_BASER_nCnB;
1685 ids = 0x14; /* 20 bits, 8MB */
Robert Richter94100972015-09-21 22:58:38 +02001686 }
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001687
Shanker Donthineni466b7d12016-03-09 22:10:49 -06001688 its->device_ids = ids;
1689
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001690 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
Shanker Donthineni2d81d422016-06-06 18:17:28 -05001691 struct its_baser *baser = its->tables + i;
1692 u64 val = its_read_baser(its, baser);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001693 u64 type = GITS_BASER_TYPE(val);
Shanker Donthineni93473592016-06-06 18:17:30 -05001694 u32 order = get_order(psz);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001695 bool indirect = false;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001696
Marc Zyngier4cacac52016-12-19 18:18:34 +00001697 switch (type) {
1698 case GITS_BASER_TYPE_NONE:
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001699 continue;
1700
Marc Zyngier4cacac52016-12-19 18:18:34 +00001701 case GITS_BASER_TYPE_DEVICE:
Shanker Donthineni32bd44d2017-10-07 15:43:48 -05001702 indirect = its_parse_indirect_baser(its, baser,
1703 psz, &order,
1704 its->device_ids);
Marc Zyngier4cacac52016-12-19 18:18:34 +00001705 case GITS_BASER_TYPE_VCPU:
1706 indirect = its_parse_indirect_baser(its, baser,
Shanker Donthineni32bd44d2017-10-07 15:43:48 -05001707 psz, &order,
1708 ITS_MAX_VPEID_BITS);
Marc Zyngier4cacac52016-12-19 18:18:34 +00001709 break;
1710 }
Marc Zyngierf54b97e2015-03-06 16:37:41 +00001711
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001712 err = its_setup_baser(its, baser, cache, shr, psz, order, indirect);
Shanker Donthineni93473592016-06-06 18:17:30 -05001713 if (err < 0) {
1714 its_free_tables(its);
1715 return err;
Robert Richter30f21362015-09-21 22:58:34 +02001716 }
1717
Shanker Donthineni93473592016-06-06 18:17:30 -05001718 /* Update settings which will be used for next BASERn */
1719 psz = baser->psz;
1720 cache = baser->val & GITS_BASER_CACHEABILITY_MASK;
1721 shr = baser->val & GITS_BASER_SHAREABILITY_MASK;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001722 }
1723
1724 return 0;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001725}
1726
1727static int its_alloc_collections(struct its_node *its)
1728{
1729 its->collections = kzalloc(nr_cpu_ids * sizeof(*its->collections),
1730 GFP_KERNEL);
1731 if (!its->collections)
1732 return -ENOMEM;
1733
1734 return 0;
1735}
1736
Marc Zyngier7c297a22016-12-19 18:34:38 +00001737static struct page *its_allocate_pending_table(gfp_t gfp_flags)
1738{
1739 struct page *pend_page;
1740 /*
1741 * The pending pages have to be at least 64kB aligned,
1742 * hence the 'max(LPI_PENDBASE_SZ, SZ_64K)' below.
1743 */
1744 pend_page = alloc_pages(gfp_flags | __GFP_ZERO,
1745 get_order(max_t(u32, LPI_PENDBASE_SZ, SZ_64K)));
1746 if (!pend_page)
1747 return NULL;
1748
1749 /* Make sure the GIC will observe the zero-ed page */
1750 gic_flush_dcache_to_poc(page_address(pend_page), LPI_PENDBASE_SZ);
1751
1752 return pend_page;
1753}
1754
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00001755static void its_free_pending_table(struct page *pt)
1756{
1757 free_pages((unsigned long)page_address(pt),
1758 get_order(max_t(u32, LPI_PENDBASE_SZ, SZ_64K)));
1759}
1760
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001761static void its_cpu_init_lpis(void)
1762{
1763 void __iomem *rbase = gic_data_rdist_rd_base();
1764 struct page *pend_page;
1765 u64 val, tmp;
1766
1767 /* If we didn't allocate the pending table yet, do it now */
1768 pend_page = gic_data_rdist()->pend_page;
1769 if (!pend_page) {
1770 phys_addr_t paddr;
Marc Zyngier7c297a22016-12-19 18:34:38 +00001771
1772 pend_page = its_allocate_pending_table(GFP_NOWAIT);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001773 if (!pend_page) {
1774 pr_err("Failed to allocate PENDBASE for CPU%d\n",
1775 smp_processor_id());
1776 return;
1777 }
1778
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001779 paddr = page_to_phys(pend_page);
1780 pr_info("CPU%d: using LPI pending table @%pa\n",
1781 smp_processor_id(), &paddr);
1782 gic_data_rdist()->pend_page = pend_page;
1783 }
1784
1785 /* Disable LPIs */
1786 val = readl_relaxed(rbase + GICR_CTLR);
1787 val &= ~GICR_CTLR_ENABLE_LPIS;
1788 writel_relaxed(val, rbase + GICR_CTLR);
1789
1790 /*
1791 * Make sure any change to the table is observable by the GIC.
1792 */
1793 dsb(sy);
1794
1795 /* set PROPBASE */
1796 val = (page_to_phys(gic_rdists->prop_page) |
1797 GICR_PROPBASER_InnerShareable |
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06001798 GICR_PROPBASER_RaWaWb |
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001799 ((LPI_NRBITS - 1) & GICR_PROPBASER_IDBITS_MASK));
1800
Vladimir Murzin0968a612016-11-02 11:54:06 +00001801 gicr_write_propbaser(val, rbase + GICR_PROPBASER);
1802 tmp = gicr_read_propbaser(rbase + GICR_PROPBASER);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001803
1804 if ((tmp ^ val) & GICR_PROPBASER_SHAREABILITY_MASK) {
Marc Zyngier241a3862015-03-27 14:15:05 +00001805 if (!(tmp & GICR_PROPBASER_SHAREABILITY_MASK)) {
1806 /*
1807 * The HW reports non-shareable, we must
1808 * remove the cacheability attributes as
1809 * well.
1810 */
1811 val &= ~(GICR_PROPBASER_SHAREABILITY_MASK |
1812 GICR_PROPBASER_CACHEABILITY_MASK);
1813 val |= GICR_PROPBASER_nC;
Vladimir Murzin0968a612016-11-02 11:54:06 +00001814 gicr_write_propbaser(val, rbase + GICR_PROPBASER);
Marc Zyngier241a3862015-03-27 14:15:05 +00001815 }
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001816 pr_info_once("GIC: using cache flushing for LPI property table\n");
1817 gic_rdists->flags |= RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING;
1818 }
1819
1820 /* set PENDBASE */
1821 val = (page_to_phys(pend_page) |
Marc Zyngier4ad3e362015-03-27 14:15:04 +00001822 GICR_PENDBASER_InnerShareable |
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06001823 GICR_PENDBASER_RaWaWb);
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001824
Vladimir Murzin0968a612016-11-02 11:54:06 +00001825 gicr_write_pendbaser(val, rbase + GICR_PENDBASER);
1826 tmp = gicr_read_pendbaser(rbase + GICR_PENDBASER);
Marc Zyngier241a3862015-03-27 14:15:05 +00001827
1828 if (!(tmp & GICR_PENDBASER_SHAREABILITY_MASK)) {
1829 /*
1830 * The HW reports non-shareable, we must remove the
1831 * cacheability attributes as well.
1832 */
1833 val &= ~(GICR_PENDBASER_SHAREABILITY_MASK |
1834 GICR_PENDBASER_CACHEABILITY_MASK);
1835 val |= GICR_PENDBASER_nC;
Vladimir Murzin0968a612016-11-02 11:54:06 +00001836 gicr_write_pendbaser(val, rbase + GICR_PENDBASER);
Marc Zyngier241a3862015-03-27 14:15:05 +00001837 }
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001838
1839 /* Enable LPIs */
1840 val = readl_relaxed(rbase + GICR_CTLR);
1841 val |= GICR_CTLR_ENABLE_LPIS;
1842 writel_relaxed(val, rbase + GICR_CTLR);
1843
1844 /* Make sure the GIC has seen the above */
1845 dsb(sy);
1846}
1847
1848static void its_cpu_init_collection(void)
1849{
1850 struct its_node *its;
1851 int cpu;
1852
1853 spin_lock(&its_lock);
1854 cpu = smp_processor_id();
1855
1856 list_for_each_entry(its, &its_nodes, entry) {
1857 u64 target;
1858
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02001859 /* avoid cross node collections and its mapping */
1860 if (its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144) {
1861 struct device_node *cpu_node;
1862
1863 cpu_node = of_get_cpu_node(cpu, NULL);
1864 if (its->numa_node != NUMA_NO_NODE &&
1865 its->numa_node != of_node_to_nid(cpu_node))
1866 continue;
1867 }
1868
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001869 /*
1870 * We now have to bind each collection to its target
1871 * redistributor.
1872 */
Marc Zyngier589ce5f2016-10-14 15:13:07 +01001873 if (gic_read_typer(its->base + GITS_TYPER) & GITS_TYPER_PTA) {
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001874 /*
1875 * This ITS wants the physical address of the
1876 * redistributor.
1877 */
1878 target = gic_data_rdist()->phys_base;
1879 } else {
1880 /*
1881 * This ITS wants a linear CPU number.
1882 */
Marc Zyngier589ce5f2016-10-14 15:13:07 +01001883 target = gic_read_typer(gic_data_rdist_rd_base() + GICR_TYPER);
Marc Zyngier263fcd32015-03-27 14:15:02 +00001884 target = GICR_TYPER_CPU_NUMBER(target) << 16;
Marc Zyngier1ac19ca2014-11-24 14:35:14 +00001885 }
1886
1887 /* Perform collection mapping */
1888 its->collections[cpu].target_address = target;
1889 its->collections[cpu].col_id = cpu;
1890
1891 its_send_mapc(its, &its->collections[cpu], 1);
1892 its_send_invall(its, &its->collections[cpu]);
1893 }
1894
1895 spin_unlock(&its_lock);
1896}
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00001897
1898static struct its_device *its_find_device(struct its_node *its, u32 dev_id)
1899{
1900 struct its_device *its_dev = NULL, *tmp;
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00001901 unsigned long flags;
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00001902
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00001903 raw_spin_lock_irqsave(&its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00001904
1905 list_for_each_entry(tmp, &its->its_device_list, entry) {
1906 if (tmp->device_id == dev_id) {
1907 its_dev = tmp;
1908 break;
1909 }
1910 }
1911
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00001912 raw_spin_unlock_irqrestore(&its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00001913
1914 return its_dev;
1915}
1916
Shanker Donthineni466b7d12016-03-09 22:10:49 -06001917static struct its_baser *its_get_baser(struct its_node *its, u32 type)
1918{
1919 int i;
1920
1921 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
1922 if (GITS_BASER_TYPE(its->tables[i].val) == type)
1923 return &its->tables[i];
1924 }
1925
1926 return NULL;
1927}
1928
Marc Zyngier70cc81e2016-12-19 18:53:02 +00001929static bool its_alloc_table_entry(struct its_baser *baser, u32 id)
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001930{
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001931 struct page *page;
1932 u32 esz, idx;
1933 __le64 *table;
1934
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001935 /* Don't allow device id that exceeds single, flat table limit */
1936 esz = GITS_BASER_ENTRY_SIZE(baser->val);
1937 if (!(baser->val & GITS_BASER_INDIRECT))
Marc Zyngier70cc81e2016-12-19 18:53:02 +00001938 return (id < (PAGE_ORDER_TO_SIZE(baser->order) / esz));
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001939
1940 /* Compute 1st level table index & check if that exceeds table limit */
Marc Zyngier70cc81e2016-12-19 18:53:02 +00001941 idx = id >> ilog2(baser->psz / esz);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001942 if (idx >= (PAGE_ORDER_TO_SIZE(baser->order) / GITS_LVL1_ENTRY_SIZE))
1943 return false;
1944
1945 table = baser->base;
1946
1947 /* Allocate memory for 2nd level table */
1948 if (!table[idx]) {
1949 page = alloc_pages(GFP_KERNEL | __GFP_ZERO, get_order(baser->psz));
1950 if (!page)
1951 return false;
1952
1953 /* Flush Lvl2 table to PoC if hw doesn't support coherency */
1954 if (!(baser->val & GITS_BASER_SHAREABILITY_MASK))
Vladimir Murzin328191c2016-11-02 11:54:05 +00001955 gic_flush_dcache_to_poc(page_address(page), baser->psz);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001956
1957 table[idx] = cpu_to_le64(page_to_phys(page) | GITS_BASER_VALID);
1958
1959 /* Flush Lvl1 entry to PoC if hw doesn't support coherency */
1960 if (!(baser->val & GITS_BASER_SHAREABILITY_MASK))
Vladimir Murzin328191c2016-11-02 11:54:05 +00001961 gic_flush_dcache_to_poc(table + idx, GITS_LVL1_ENTRY_SIZE);
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05001962
1963 /* Ensure updated table contents are visible to ITS hardware */
1964 dsb(sy);
1965 }
1966
1967 return true;
1968}
1969
Marc Zyngier70cc81e2016-12-19 18:53:02 +00001970static bool its_alloc_device_table(struct its_node *its, u32 dev_id)
1971{
1972 struct its_baser *baser;
1973
1974 baser = its_get_baser(its, GITS_BASER_TYPE_DEVICE);
1975
1976 /* Don't allow device id that exceeds ITS hardware limit */
1977 if (!baser)
1978 return (ilog2(dev_id) < its->device_ids);
1979
1980 return its_alloc_table_entry(baser, dev_id);
1981}
1982
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00001983static bool its_alloc_vpe_table(u32 vpe_id)
1984{
1985 struct its_node *its;
1986
1987 /*
1988 * Make sure the L2 tables are allocated on *all* v4 ITSs. We
1989 * could try and only do it on ITSs corresponding to devices
1990 * that have interrupts targeted at this VPE, but the
1991 * complexity becomes crazy (and you have tons of memory
1992 * anyway, right?).
1993 */
1994 list_for_each_entry(its, &its_nodes, entry) {
1995 struct its_baser *baser;
1996
1997 if (!its->is_v4)
1998 continue;
1999
2000 baser = its_get_baser(its, GITS_BASER_TYPE_VCPU);
2001 if (!baser)
2002 return false;
2003
2004 if (!its_alloc_table_entry(baser, vpe_id))
2005 return false;
2006 }
2007
2008 return true;
2009}
2010
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002011static struct its_device *its_create_device(struct its_node *its, u32 dev_id,
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002012 int nvecs, bool alloc_lpis)
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002013{
2014 struct its_device *dev;
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002015 unsigned long *lpi_map = NULL;
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002016 unsigned long flags;
Marc Zyngier591e5be2015-07-17 10:46:42 +01002017 u16 *col_map = NULL;
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002018 void *itt;
2019 int lpi_base;
2020 int nr_lpis;
Marc Zyngierc8481262014-12-12 10:51:24 +00002021 int nr_ites;
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002022 int sz;
2023
Shanker Donthineni3faf24e2016-06-06 18:17:32 -05002024 if (!its_alloc_device_table(its, dev_id))
Shanker Donthineni466b7d12016-03-09 22:10:49 -06002025 return NULL;
2026
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002027 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Marc Zyngierc8481262014-12-12 10:51:24 +00002028 /*
2029 * At least one bit of EventID is being used, hence a minimum
2030 * of two entries. No, the architecture doesn't let you
2031 * express an ITT with a single entry.
2032 */
Will Deacon96555c42014-12-17 14:11:09 +00002033 nr_ites = max(2UL, roundup_pow_of_two(nvecs));
Marc Zyngierc8481262014-12-12 10:51:24 +00002034 sz = nr_ites * its->ite_size;
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002035 sz = max(sz, ITS_ITT_ALIGN) + ITS_ITT_ALIGN - 1;
Yun Wu6c834122015-03-06 16:37:46 +00002036 itt = kzalloc(sz, GFP_KERNEL);
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002037 if (alloc_lpis) {
2038 lpi_map = its_lpi_alloc_chunks(nvecs, &lpi_base, &nr_lpis);
2039 if (lpi_map)
2040 col_map = kzalloc(sizeof(*col_map) * nr_lpis,
2041 GFP_KERNEL);
2042 } else {
2043 col_map = kzalloc(sizeof(*col_map) * nr_ites, GFP_KERNEL);
2044 nr_lpis = 0;
2045 lpi_base = 0;
2046 }
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002047
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002048 if (!dev || !itt || !col_map || (!lpi_map && alloc_lpis)) {
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002049 kfree(dev);
2050 kfree(itt);
2051 kfree(lpi_map);
Marc Zyngier591e5be2015-07-17 10:46:42 +01002052 kfree(col_map);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002053 return NULL;
2054 }
2055
Vladimir Murzin328191c2016-11-02 11:54:05 +00002056 gic_flush_dcache_to_poc(itt, sz);
Marc Zyngier5a9a8912015-09-13 12:14:32 +01002057
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002058 dev->its = its;
2059 dev->itt = itt;
Marc Zyngierc8481262014-12-12 10:51:24 +00002060 dev->nr_ites = nr_ites;
Marc Zyngier591e5be2015-07-17 10:46:42 +01002061 dev->event_map.lpi_map = lpi_map;
2062 dev->event_map.col_map = col_map;
2063 dev->event_map.lpi_base = lpi_base;
2064 dev->event_map.nr_lpis = nr_lpis;
Marc Zyngierd011e4e2016-12-20 09:44:41 +00002065 mutex_init(&dev->event_map.vlpi_lock);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002066 dev->device_id = dev_id;
2067 INIT_LIST_HEAD(&dev->entry);
2068
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002069 raw_spin_lock_irqsave(&its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002070 list_add(&dev->entry, &its->its_device_list);
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002071 raw_spin_unlock_irqrestore(&its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002072
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002073 /* Map device to its ITT */
2074 its_send_mapd(dev, 1);
2075
2076 return dev;
2077}
2078
2079static void its_free_device(struct its_device *its_dev)
2080{
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002081 unsigned long flags;
2082
2083 raw_spin_lock_irqsave(&its_dev->its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002084 list_del(&its_dev->entry);
Marc Zyngier3e39e8f52015-03-06 16:37:43 +00002085 raw_spin_unlock_irqrestore(&its_dev->its->lock, flags);
Marc Zyngier84a6a2e2014-11-24 14:35:15 +00002086 kfree(its_dev->itt);
2087 kfree(its_dev);
2088}
Marc Zyngierb48ac832014-11-24 14:35:16 +00002089
2090static int its_alloc_device_irq(struct its_device *dev, irq_hw_number_t *hwirq)
2091{
2092 int idx;
2093
Marc Zyngier591e5be2015-07-17 10:46:42 +01002094 idx = find_first_zero_bit(dev->event_map.lpi_map,
2095 dev->event_map.nr_lpis);
2096 if (idx == dev->event_map.nr_lpis)
Marc Zyngierb48ac832014-11-24 14:35:16 +00002097 return -ENOSPC;
2098
Marc Zyngier591e5be2015-07-17 10:46:42 +01002099 *hwirq = dev->event_map.lpi_base + idx;
2100 set_bit(idx, dev->event_map.lpi_map);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002101
Marc Zyngierb48ac832014-11-24 14:35:16 +00002102 return 0;
2103}
2104
Marc Zyngier54456db2015-07-28 14:46:21 +01002105static int its_msi_prepare(struct irq_domain *domain, struct device *dev,
2106 int nvec, msi_alloc_info_t *info)
Marc Zyngiere8137f42015-03-06 16:37:42 +00002107{
Marc Zyngierb48ac832014-11-24 14:35:16 +00002108 struct its_node *its;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002109 struct its_device *its_dev;
Marc Zyngier54456db2015-07-28 14:46:21 +01002110 struct msi_domain_info *msi_info;
2111 u32 dev_id;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002112
Marc Zyngier54456db2015-07-28 14:46:21 +01002113 /*
2114 * We ignore "dev" entierely, and rely on the dev_id that has
2115 * been passed via the scratchpad. This limits this domain's
2116 * usefulness to upper layers that definitely know that they
2117 * are built on top of the ITS.
2118 */
2119 dev_id = info->scratchpad[0].ul;
2120
2121 msi_info = msi_get_domain_info(domain);
2122 its = msi_info->data;
2123
Marc Zyngier20b3d542016-12-20 15:23:22 +00002124 if (!gic_rdists->has_direct_lpi &&
2125 vpe_proxy.dev &&
2126 vpe_proxy.dev->its == its &&
2127 dev_id == vpe_proxy.dev->device_id) {
2128 /* Bad luck. Get yourself a better implementation */
2129 WARN_ONCE(1, "DevId %x clashes with GICv4 VPE proxy device\n",
2130 dev_id);
2131 return -EINVAL;
2132 }
2133
Marc Zyngierf1304202015-07-28 14:46:18 +01002134 its_dev = its_find_device(its, dev_id);
Marc Zyngiere8137f42015-03-06 16:37:42 +00002135 if (its_dev) {
2136 /*
2137 * We already have seen this ID, probably through
2138 * another alias (PCI bridge of some sort). No need to
2139 * create the device.
2140 */
Marc Zyngierf1304202015-07-28 14:46:18 +01002141 pr_debug("Reusing ITT for devID %x\n", dev_id);
Marc Zyngiere8137f42015-03-06 16:37:42 +00002142 goto out;
2143 }
Marc Zyngierb48ac832014-11-24 14:35:16 +00002144
Marc Zyngier93f94ea2017-08-04 18:37:09 +01002145 its_dev = its_create_device(its, dev_id, nvec, true);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002146 if (!its_dev)
2147 return -ENOMEM;
2148
Marc Zyngierf1304202015-07-28 14:46:18 +01002149 pr_debug("ITT %d entries, %d bits\n", nvec, ilog2(nvec));
Marc Zyngiere8137f42015-03-06 16:37:42 +00002150out:
Marc Zyngierb48ac832014-11-24 14:35:16 +00002151 info->scratchpad[0].ptr = its_dev;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002152 return 0;
2153}
2154
Marc Zyngier54456db2015-07-28 14:46:21 +01002155static struct msi_domain_ops its_msi_domain_ops = {
2156 .msi_prepare = its_msi_prepare,
2157};
2158
Marc Zyngierb48ac832014-11-24 14:35:16 +00002159static int its_irq_gic_domain_alloc(struct irq_domain *domain,
2160 unsigned int virq,
2161 irq_hw_number_t hwirq)
2162{
Marc Zyngierf833f572015-10-13 12:51:33 +01002163 struct irq_fwspec fwspec;
Marc Zyngierb48ac832014-11-24 14:35:16 +00002164
Marc Zyngierf833f572015-10-13 12:51:33 +01002165 if (irq_domain_get_of_node(domain->parent)) {
2166 fwspec.fwnode = domain->parent->fwnode;
2167 fwspec.param_count = 3;
2168 fwspec.param[0] = GIC_IRQ_TYPE_LPI;
2169 fwspec.param[1] = hwirq;
2170 fwspec.param[2] = IRQ_TYPE_EDGE_RISING;
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02002171 } else if (is_fwnode_irqchip(domain->parent->fwnode)) {
2172 fwspec.fwnode = domain->parent->fwnode;
2173 fwspec.param_count = 2;
2174 fwspec.param[0] = hwirq;
2175 fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
Marc Zyngierf833f572015-10-13 12:51:33 +01002176 } else {
2177 return -EINVAL;
2178 }
Marc Zyngierb48ac832014-11-24 14:35:16 +00002179
Marc Zyngierf833f572015-10-13 12:51:33 +01002180 return irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002181}
2182
2183static int its_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
2184 unsigned int nr_irqs, void *args)
2185{
2186 msi_alloc_info_t *info = args;
2187 struct its_device *its_dev = info->scratchpad[0].ptr;
2188 irq_hw_number_t hwirq;
2189 int err;
2190 int i;
2191
2192 for (i = 0; i < nr_irqs; i++) {
2193 err = its_alloc_device_irq(its_dev, &hwirq);
2194 if (err)
2195 return err;
2196
2197 err = its_irq_gic_domain_alloc(domain, virq + i, hwirq);
2198 if (err)
2199 return err;
2200
2201 irq_domain_set_hwirq_and_chip(domain, virq + i,
2202 hwirq, &its_irq_chip, its_dev);
Marc Zyngier0d224d32017-08-18 09:39:18 +01002203 irqd_set_single_target(irq_desc_get_irq_data(irq_to_desc(virq + i)));
Marc Zyngierf1304202015-07-28 14:46:18 +01002204 pr_debug("ID:%d pID:%d vID:%d\n",
2205 (int)(hwirq - its_dev->event_map.lpi_base),
2206 (int) hwirq, virq + i);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002207 }
2208
2209 return 0;
2210}
2211
Marc Zyngieraca268d2014-12-12 10:51:23 +00002212static void its_irq_domain_activate(struct irq_domain *domain,
2213 struct irq_data *d)
2214{
2215 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
2216 u32 event = its_get_event_id(d);
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02002217 const struct cpumask *cpu_mask = cpu_online_mask;
Marc Zyngier0d224d32017-08-18 09:39:18 +01002218 int cpu;
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02002219
2220 /* get the cpu_mask of local node */
2221 if (its_dev->its->numa_node >= 0)
2222 cpu_mask = cpumask_of_node(its_dev->its->numa_node);
Marc Zyngieraca268d2014-12-12 10:51:23 +00002223
Marc Zyngier591e5be2015-07-17 10:46:42 +01002224 /* Bind the LPI to the first possible CPU */
Marc Zyngier0d224d32017-08-18 09:39:18 +01002225 cpu = cpumask_first(cpu_mask);
2226 its_dev->event_map.col_map[event] = cpu;
2227 irq_data_update_effective_affinity(d, cpumask_of(cpu));
Marc Zyngier591e5be2015-07-17 10:46:42 +01002228
Marc Zyngieraca268d2014-12-12 10:51:23 +00002229 /* Map the GIC IRQ and event to the device */
Marc Zyngier6a25ad32016-12-20 15:52:26 +00002230 its_send_mapti(its_dev, d->hwirq, event);
Marc Zyngieraca268d2014-12-12 10:51:23 +00002231}
2232
2233static void its_irq_domain_deactivate(struct irq_domain *domain,
2234 struct irq_data *d)
2235{
2236 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
2237 u32 event = its_get_event_id(d);
2238
2239 /* Stop the delivery of interrupts */
2240 its_send_discard(its_dev, event);
2241}
2242
Marc Zyngierb48ac832014-11-24 14:35:16 +00002243static void its_irq_domain_free(struct irq_domain *domain, unsigned int virq,
2244 unsigned int nr_irqs)
2245{
2246 struct irq_data *d = irq_domain_get_irq_data(domain, virq);
2247 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
2248 int i;
2249
2250 for (i = 0; i < nr_irqs; i++) {
2251 struct irq_data *data = irq_domain_get_irq_data(domain,
2252 virq + i);
Marc Zyngieraca268d2014-12-12 10:51:23 +00002253 u32 event = its_get_event_id(data);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002254
2255 /* Mark interrupt index as unused */
Marc Zyngier591e5be2015-07-17 10:46:42 +01002256 clear_bit(event, its_dev->event_map.lpi_map);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002257
2258 /* Nuke the entry in the domain */
Marc Zyngier2da39942014-12-12 10:51:22 +00002259 irq_domain_reset_irq_data(data);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002260 }
2261
2262 /* If all interrupts have been freed, start mopping the floor */
Marc Zyngier591e5be2015-07-17 10:46:42 +01002263 if (bitmap_empty(its_dev->event_map.lpi_map,
2264 its_dev->event_map.nr_lpis)) {
Marc Zyngiercf2be8b2016-12-19 18:49:59 +00002265 its_lpi_free_chunks(its_dev->event_map.lpi_map,
2266 its_dev->event_map.lpi_base,
2267 its_dev->event_map.nr_lpis);
2268 kfree(its_dev->event_map.col_map);
Marc Zyngierb48ac832014-11-24 14:35:16 +00002269
2270 /* Unmap device/itt */
2271 its_send_mapd(its_dev, 0);
2272 its_free_device(its_dev);
2273 }
2274
2275 irq_domain_free_irqs_parent(domain, virq, nr_irqs);
2276}
2277
2278static const struct irq_domain_ops its_domain_ops = {
2279 .alloc = its_irq_domain_alloc,
2280 .free = its_irq_domain_free,
Marc Zyngieraca268d2014-12-12 10:51:23 +00002281 .activate = its_irq_domain_activate,
2282 .deactivate = its_irq_domain_deactivate,
Marc Zyngierb48ac832014-11-24 14:35:16 +00002283};
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002284
Marc Zyngier20b3d542016-12-20 15:23:22 +00002285/*
2286 * This is insane.
2287 *
2288 * If a GICv4 doesn't implement Direct LPIs (which is extremely
2289 * likely), the only way to perform an invalidate is to use a fake
2290 * device to issue an INV command, implying that the LPI has first
2291 * been mapped to some event on that device. Since this is not exactly
2292 * cheap, we try to keep that mapping around as long as possible, and
2293 * only issue an UNMAP if we're short on available slots.
2294 *
2295 * Broken by design(tm).
2296 */
2297static void its_vpe_db_proxy_unmap_locked(struct its_vpe *vpe)
2298{
2299 /* Already unmapped? */
2300 if (vpe->vpe_proxy_event == -1)
2301 return;
2302
2303 its_send_discard(vpe_proxy.dev, vpe->vpe_proxy_event);
2304 vpe_proxy.vpes[vpe->vpe_proxy_event] = NULL;
2305
2306 /*
2307 * We don't track empty slots at all, so let's move the
2308 * next_victim pointer if we can quickly reuse that slot
2309 * instead of nuking an existing entry. Not clear that this is
2310 * always a win though, and this might just generate a ripple
2311 * effect... Let's just hope VPEs don't migrate too often.
2312 */
2313 if (vpe_proxy.vpes[vpe_proxy.next_victim])
2314 vpe_proxy.next_victim = vpe->vpe_proxy_event;
2315
2316 vpe->vpe_proxy_event = -1;
2317}
2318
2319static void its_vpe_db_proxy_unmap(struct its_vpe *vpe)
2320{
2321 if (!gic_rdists->has_direct_lpi) {
2322 unsigned long flags;
2323
2324 raw_spin_lock_irqsave(&vpe_proxy.lock, flags);
2325 its_vpe_db_proxy_unmap_locked(vpe);
2326 raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags);
2327 }
2328}
2329
2330static void its_vpe_db_proxy_map_locked(struct its_vpe *vpe)
2331{
2332 /* Already mapped? */
2333 if (vpe->vpe_proxy_event != -1)
2334 return;
2335
2336 /* This slot was already allocated. Kick the other VPE out. */
2337 if (vpe_proxy.vpes[vpe_proxy.next_victim])
2338 its_vpe_db_proxy_unmap_locked(vpe_proxy.vpes[vpe_proxy.next_victim]);
2339
2340 /* Map the new VPE instead */
2341 vpe_proxy.vpes[vpe_proxy.next_victim] = vpe;
2342 vpe->vpe_proxy_event = vpe_proxy.next_victim;
2343 vpe_proxy.next_victim = (vpe_proxy.next_victim + 1) % vpe_proxy.dev->nr_ites;
2344
2345 vpe_proxy.dev->event_map.col_map[vpe->vpe_proxy_event] = vpe->col_idx;
2346 its_send_mapti(vpe_proxy.dev, vpe->vpe_db_lpi, vpe->vpe_proxy_event);
2347}
2348
Marc Zyngier958b90d2017-08-18 16:14:17 +01002349static void its_vpe_db_proxy_move(struct its_vpe *vpe, int from, int to)
2350{
2351 unsigned long flags;
2352 struct its_collection *target_col;
2353
2354 if (gic_rdists->has_direct_lpi) {
2355 void __iomem *rdbase;
2356
2357 rdbase = per_cpu_ptr(gic_rdists->rdist, from)->rd_base;
2358 gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_CLRLPIR);
2359 while (gic_read_lpir(rdbase + GICR_SYNCR) & 1)
2360 cpu_relax();
2361
2362 return;
2363 }
2364
2365 raw_spin_lock_irqsave(&vpe_proxy.lock, flags);
2366
2367 its_vpe_db_proxy_map_locked(vpe);
2368
2369 target_col = &vpe_proxy.dev->its->collections[to];
2370 its_send_movi(vpe_proxy.dev, target_col, vpe->vpe_proxy_event);
2371 vpe_proxy.dev->event_map.col_map[vpe->vpe_proxy_event] = to;
2372
2373 raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags);
2374}
2375
Marc Zyngier3171a472016-12-20 15:17:28 +00002376static int its_vpe_set_affinity(struct irq_data *d,
2377 const struct cpumask *mask_val,
2378 bool force)
2379{
2380 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
2381 int cpu = cpumask_first(mask_val);
2382
2383 /*
2384 * Changing affinity is mega expensive, so let's be as lazy as
Marc Zyngier20b3d542016-12-20 15:23:22 +00002385 * we can and only do it if we really have to. Also, if mapped
Marc Zyngier958b90d2017-08-18 16:14:17 +01002386 * into the proxy device, we need to move the doorbell
2387 * interrupt to its new location.
Marc Zyngier3171a472016-12-20 15:17:28 +00002388 */
2389 if (vpe->col_idx != cpu) {
Marc Zyngier958b90d2017-08-18 16:14:17 +01002390 int from = vpe->col_idx;
2391
Marc Zyngier3171a472016-12-20 15:17:28 +00002392 vpe->col_idx = cpu;
2393 its_send_vmovp(vpe);
Marc Zyngier958b90d2017-08-18 16:14:17 +01002394 its_vpe_db_proxy_move(vpe, from, cpu);
Marc Zyngier3171a472016-12-20 15:17:28 +00002395 }
2396
2397 return IRQ_SET_MASK_OK_DONE;
2398}
2399
Marc Zyngiere643d802016-12-20 15:09:31 +00002400static void its_vpe_schedule(struct its_vpe *vpe)
2401{
2402 void * __iomem vlpi_base = gic_data_rdist_vlpi_base();
2403 u64 val;
2404
2405 /* Schedule the VPE */
2406 val = virt_to_phys(page_address(vpe->its_vm->vprop_page)) &
2407 GENMASK_ULL(51, 12);
2408 val |= (LPI_NRBITS - 1) & GICR_VPROPBASER_IDBITS_MASK;
2409 val |= GICR_VPROPBASER_RaWb;
2410 val |= GICR_VPROPBASER_InnerShareable;
2411 gits_write_vpropbaser(val, vlpi_base + GICR_VPROPBASER);
2412
2413 val = virt_to_phys(page_address(vpe->vpt_page)) &
2414 GENMASK_ULL(51, 16);
2415 val |= GICR_VPENDBASER_RaWaWb;
2416 val |= GICR_VPENDBASER_NonShareable;
2417 /*
2418 * There is no good way of finding out if the pending table is
2419 * empty as we can race against the doorbell interrupt very
2420 * easily. So in the end, vpe->pending_last is only an
2421 * indication that the vcpu has something pending, not one
2422 * that the pending table is empty. A good implementation
2423 * would be able to read its coarse map pretty quickly anyway,
2424 * making this a tolerable issue.
2425 */
2426 val |= GICR_VPENDBASER_PendingLast;
2427 val |= vpe->idai ? GICR_VPENDBASER_IDAI : 0;
2428 val |= GICR_VPENDBASER_Valid;
2429 gits_write_vpendbaser(val, vlpi_base + GICR_VPENDBASER);
2430}
2431
2432static void its_vpe_deschedule(struct its_vpe *vpe)
2433{
2434 void * __iomem vlpi_base = gic_data_rdist_vlpi_base();
2435 u32 count = 1000000; /* 1s! */
2436 bool clean;
2437 u64 val;
2438
2439 /* We're being scheduled out */
2440 val = gits_read_vpendbaser(vlpi_base + GICR_VPENDBASER);
2441 val &= ~GICR_VPENDBASER_Valid;
2442 gits_write_vpendbaser(val, vlpi_base + GICR_VPENDBASER);
2443
2444 do {
2445 val = gits_read_vpendbaser(vlpi_base + GICR_VPENDBASER);
2446 clean = !(val & GICR_VPENDBASER_Dirty);
2447 if (!clean) {
2448 count--;
2449 cpu_relax();
2450 udelay(1);
2451 }
2452 } while (!clean && count);
2453
2454 if (unlikely(!clean && !count)) {
2455 pr_err_ratelimited("ITS virtual pending table not cleaning\n");
2456 vpe->idai = false;
2457 vpe->pending_last = true;
2458 } else {
2459 vpe->idai = !!(val & GICR_VPENDBASER_IDAI);
2460 vpe->pending_last = !!(val & GICR_VPENDBASER_PendingLast);
2461 }
2462}
2463
2464static int its_vpe_set_vcpu_affinity(struct irq_data *d, void *vcpu_info)
2465{
2466 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
2467 struct its_cmd_info *info = vcpu_info;
2468
2469 switch (info->cmd_type) {
2470 case SCHEDULE_VPE:
2471 its_vpe_schedule(vpe);
2472 return 0;
2473
2474 case DESCHEDULE_VPE:
2475 its_vpe_deschedule(vpe);
2476 return 0;
2477
Marc Zyngier5e2f7642016-12-20 15:10:50 +00002478 case INVALL_VPE:
2479 its_send_vinvall(vpe);
2480 return 0;
2481
Marc Zyngiere643d802016-12-20 15:09:31 +00002482 default:
2483 return -EINVAL;
2484 }
2485}
2486
Marc Zyngier20b3d542016-12-20 15:23:22 +00002487static void its_vpe_send_cmd(struct its_vpe *vpe,
2488 void (*cmd)(struct its_device *, u32))
2489{
2490 unsigned long flags;
2491
2492 raw_spin_lock_irqsave(&vpe_proxy.lock, flags);
2493
2494 its_vpe_db_proxy_map_locked(vpe);
2495 cmd(vpe_proxy.dev, vpe->vpe_proxy_event);
2496
2497 raw_spin_unlock_irqrestore(&vpe_proxy.lock, flags);
2498}
2499
Marc Zyngierf6a91da2016-12-20 15:20:38 +00002500static void its_vpe_send_inv(struct irq_data *d)
2501{
2502 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
Marc Zyngierf6a91da2016-12-20 15:20:38 +00002503
Marc Zyngier20b3d542016-12-20 15:23:22 +00002504 if (gic_rdists->has_direct_lpi) {
2505 void __iomem *rdbase;
2506
2507 rdbase = per_cpu_ptr(gic_rdists->rdist, vpe->col_idx)->rd_base;
2508 gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_INVLPIR);
2509 while (gic_read_lpir(rdbase + GICR_SYNCR) & 1)
2510 cpu_relax();
2511 } else {
2512 its_vpe_send_cmd(vpe, its_send_inv);
2513 }
Marc Zyngierf6a91da2016-12-20 15:20:38 +00002514}
2515
2516static void its_vpe_mask_irq(struct irq_data *d)
2517{
2518 /*
2519 * We need to unmask the LPI, which is described by the parent
2520 * irq_data. Instead of calling into the parent (which won't
2521 * exactly do the right thing, let's simply use the
2522 * parent_data pointer. Yes, I'm naughty.
2523 */
2524 lpi_write_config(d->parent_data, LPI_PROP_ENABLED, 0);
2525 its_vpe_send_inv(d);
2526}
2527
2528static void its_vpe_unmask_irq(struct irq_data *d)
2529{
2530 /* Same hack as above... */
2531 lpi_write_config(d->parent_data, 0, LPI_PROP_ENABLED);
2532 its_vpe_send_inv(d);
2533}
2534
Marc Zyngiere57a3e282017-07-31 14:47:24 +01002535static int its_vpe_set_irqchip_state(struct irq_data *d,
2536 enum irqchip_irq_state which,
2537 bool state)
2538{
2539 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
2540
2541 if (which != IRQCHIP_STATE_PENDING)
2542 return -EINVAL;
2543
2544 if (gic_rdists->has_direct_lpi) {
2545 void __iomem *rdbase;
2546
2547 rdbase = per_cpu_ptr(gic_rdists->rdist, vpe->col_idx)->rd_base;
2548 if (state) {
2549 gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_SETLPIR);
2550 } else {
2551 gic_write_lpir(vpe->vpe_db_lpi, rdbase + GICR_CLRLPIR);
2552 while (gic_read_lpir(rdbase + GICR_SYNCR) & 1)
2553 cpu_relax();
2554 }
2555 } else {
2556 if (state)
2557 its_vpe_send_cmd(vpe, its_send_int);
2558 else
2559 its_vpe_send_cmd(vpe, its_send_clear);
2560 }
2561
2562 return 0;
2563}
2564
Marc Zyngier8fff27a2016-12-20 13:41:55 +00002565static struct irq_chip its_vpe_irq_chip = {
2566 .name = "GICv4-vpe",
Marc Zyngierf6a91da2016-12-20 15:20:38 +00002567 .irq_mask = its_vpe_mask_irq,
2568 .irq_unmask = its_vpe_unmask_irq,
2569 .irq_eoi = irq_chip_eoi_parent,
Marc Zyngier3171a472016-12-20 15:17:28 +00002570 .irq_set_affinity = its_vpe_set_affinity,
Marc Zyngiere57a3e282017-07-31 14:47:24 +01002571 .irq_set_irqchip_state = its_vpe_set_irqchip_state,
Marc Zyngiere643d802016-12-20 15:09:31 +00002572 .irq_set_vcpu_affinity = its_vpe_set_vcpu_affinity,
Marc Zyngier8fff27a2016-12-20 13:41:55 +00002573};
2574
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002575static int its_vpe_id_alloc(void)
2576{
Shanker Donthineni32bd44d2017-10-07 15:43:48 -05002577 return ida_simple_get(&its_vpeid_ida, 0, ITS_MAX_VPEID, GFP_KERNEL);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002578}
2579
2580static void its_vpe_id_free(u16 id)
2581{
2582 ida_simple_remove(&its_vpeid_ida, id);
2583}
2584
2585static int its_vpe_init(struct its_vpe *vpe)
2586{
2587 struct page *vpt_page;
2588 int vpe_id;
2589
2590 /* Allocate vpe_id */
2591 vpe_id = its_vpe_id_alloc();
2592 if (vpe_id < 0)
2593 return vpe_id;
2594
2595 /* Allocate VPT */
2596 vpt_page = its_allocate_pending_table(GFP_KERNEL);
2597 if (!vpt_page) {
2598 its_vpe_id_free(vpe_id);
2599 return -ENOMEM;
2600 }
2601
2602 if (!its_alloc_vpe_table(vpe_id)) {
2603 its_vpe_id_free(vpe_id);
2604 its_free_pending_table(vpe->vpt_page);
2605 return -ENOMEM;
2606 }
2607
2608 vpe->vpe_id = vpe_id;
2609 vpe->vpt_page = vpt_page;
Marc Zyngier20b3d542016-12-20 15:23:22 +00002610 vpe->vpe_proxy_event = -1;
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002611
2612 return 0;
2613}
2614
2615static void its_vpe_teardown(struct its_vpe *vpe)
2616{
Marc Zyngier20b3d542016-12-20 15:23:22 +00002617 its_vpe_db_proxy_unmap(vpe);
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002618 its_vpe_id_free(vpe->vpe_id);
2619 its_free_pending_table(vpe->vpt_page);
2620}
2621
2622static void its_vpe_irq_domain_free(struct irq_domain *domain,
2623 unsigned int virq,
2624 unsigned int nr_irqs)
2625{
2626 struct its_vm *vm = domain->host_data;
2627 int i;
2628
2629 irq_domain_free_irqs_parent(domain, virq, nr_irqs);
2630
2631 for (i = 0; i < nr_irqs; i++) {
2632 struct irq_data *data = irq_domain_get_irq_data(domain,
2633 virq + i);
2634 struct its_vpe *vpe = irq_data_get_irq_chip_data(data);
2635
2636 BUG_ON(vm != vpe->its_vm);
2637
2638 clear_bit(data->hwirq, vm->db_bitmap);
2639 its_vpe_teardown(vpe);
2640 irq_domain_reset_irq_data(data);
2641 }
2642
2643 if (bitmap_empty(vm->db_bitmap, vm->nr_db_lpis)) {
2644 its_lpi_free_chunks(vm->db_bitmap, vm->db_lpi_base, vm->nr_db_lpis);
2645 its_free_prop_table(vm->vprop_page);
2646 }
2647}
2648
2649static int its_vpe_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
2650 unsigned int nr_irqs, void *args)
2651{
2652 struct its_vm *vm = args;
2653 unsigned long *bitmap;
2654 struct page *vprop_page;
2655 int base, nr_ids, i, err = 0;
2656
2657 BUG_ON(!vm);
2658
2659 bitmap = its_lpi_alloc_chunks(nr_irqs, &base, &nr_ids);
2660 if (!bitmap)
2661 return -ENOMEM;
2662
2663 if (nr_ids < nr_irqs) {
2664 its_lpi_free_chunks(bitmap, base, nr_ids);
2665 return -ENOMEM;
2666 }
2667
2668 vprop_page = its_allocate_prop_table(GFP_KERNEL);
2669 if (!vprop_page) {
2670 its_lpi_free_chunks(bitmap, base, nr_ids);
2671 return -ENOMEM;
2672 }
2673
2674 vm->db_bitmap = bitmap;
2675 vm->db_lpi_base = base;
2676 vm->nr_db_lpis = nr_ids;
2677 vm->vprop_page = vprop_page;
2678
2679 for (i = 0; i < nr_irqs; i++) {
2680 vm->vpes[i]->vpe_db_lpi = base + i;
2681 err = its_vpe_init(vm->vpes[i]);
2682 if (err)
2683 break;
2684 err = its_irq_gic_domain_alloc(domain, virq + i,
2685 vm->vpes[i]->vpe_db_lpi);
2686 if (err)
2687 break;
2688 irq_domain_set_hwirq_and_chip(domain, virq + i, i,
2689 &its_vpe_irq_chip, vm->vpes[i]);
2690 set_bit(i, bitmap);
2691 }
2692
2693 if (err) {
2694 if (i > 0)
2695 its_vpe_irq_domain_free(domain, virq, i - 1);
2696
2697 its_lpi_free_chunks(bitmap, base, nr_ids);
2698 its_free_prop_table(vprop_page);
2699 }
2700
2701 return err;
2702}
2703
Marc Zyngiereb781922016-12-20 14:47:05 +00002704static void its_vpe_irq_domain_activate(struct irq_domain *domain,
2705 struct irq_data *d)
2706{
2707 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
2708
2709 /* Map the VPE to the first possible CPU */
2710 vpe->col_idx = cpumask_first(cpu_online_mask);
2711 its_send_vmapp(vpe, true);
2712 its_send_vinvall(vpe);
2713}
2714
2715static void its_vpe_irq_domain_deactivate(struct irq_domain *domain,
2716 struct irq_data *d)
2717{
2718 struct its_vpe *vpe = irq_data_get_irq_chip_data(d);
2719
2720 its_send_vmapp(vpe, false);
2721}
2722
Marc Zyngier8fff27a2016-12-20 13:41:55 +00002723static const struct irq_domain_ops its_vpe_domain_ops = {
Marc Zyngier7d75bbb2016-12-20 13:55:54 +00002724 .alloc = its_vpe_irq_domain_alloc,
2725 .free = its_vpe_irq_domain_free,
Marc Zyngiereb781922016-12-20 14:47:05 +00002726 .activate = its_vpe_irq_domain_activate,
2727 .deactivate = its_vpe_irq_domain_deactivate,
Marc Zyngier8fff27a2016-12-20 13:41:55 +00002728};
2729
Yun Wu4559fbb2015-03-06 16:37:50 +00002730static int its_force_quiescent(void __iomem *base)
2731{
2732 u32 count = 1000000; /* 1s */
2733 u32 val;
2734
2735 val = readl_relaxed(base + GITS_CTLR);
David Daney7611da82016-08-18 15:41:58 -07002736 /*
2737 * GIC architecture specification requires the ITS to be both
2738 * disabled and quiescent for writes to GITS_BASER<n> or
2739 * GITS_CBASER to not have UNPREDICTABLE results.
2740 */
2741 if ((val & GITS_CTLR_QUIESCENT) && !(val & GITS_CTLR_ENABLE))
Yun Wu4559fbb2015-03-06 16:37:50 +00002742 return 0;
2743
2744 /* Disable the generation of all interrupts to this ITS */
Marc Zyngierd51c4b42017-06-27 21:24:25 +01002745 val &= ~(GITS_CTLR_ENABLE | GITS_CTLR_ImDe);
Yun Wu4559fbb2015-03-06 16:37:50 +00002746 writel_relaxed(val, base + GITS_CTLR);
2747
2748 /* Poll GITS_CTLR and wait until ITS becomes quiescent */
2749 while (1) {
2750 val = readl_relaxed(base + GITS_CTLR);
2751 if (val & GITS_CTLR_QUIESCENT)
2752 return 0;
2753
2754 count--;
2755 if (!count)
2756 return -EBUSY;
2757
2758 cpu_relax();
2759 udelay(1);
2760 }
2761}
2762
Robert Richter94100972015-09-21 22:58:38 +02002763static void __maybe_unused its_enable_quirk_cavium_22375(void *data)
2764{
2765 struct its_node *its = data;
2766
2767 its->flags |= ITS_FLAGS_WORKAROUND_CAVIUM_22375;
2768}
2769
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02002770static void __maybe_unused its_enable_quirk_cavium_23144(void *data)
2771{
2772 struct its_node *its = data;
2773
2774 its->flags |= ITS_FLAGS_WORKAROUND_CAVIUM_23144;
2775}
2776
Shanker Donthineni90922a22017-03-07 08:20:38 -06002777static void __maybe_unused its_enable_quirk_qdf2400_e0065(void *data)
2778{
2779 struct its_node *its = data;
2780
2781 /* On QDF2400, the size of the ITE is 16Bytes */
2782 its->ite_size = 16;
2783}
2784
Robert Richter67510cc2015-09-21 22:58:37 +02002785static const struct gic_quirk its_quirks[] = {
Robert Richter94100972015-09-21 22:58:38 +02002786#ifdef CONFIG_CAVIUM_ERRATUM_22375
2787 {
2788 .desc = "ITS: Cavium errata 22375, 24313",
2789 .iidr = 0xa100034c, /* ThunderX pass 1.x */
2790 .mask = 0xffff0fff,
2791 .init = its_enable_quirk_cavium_22375,
2792 },
2793#endif
Ganapatrao Kulkarnifbf8f402016-05-25 15:29:20 +02002794#ifdef CONFIG_CAVIUM_ERRATUM_23144
2795 {
2796 .desc = "ITS: Cavium erratum 23144",
2797 .iidr = 0xa100034c, /* ThunderX pass 1.x */
2798 .mask = 0xffff0fff,
2799 .init = its_enable_quirk_cavium_23144,
2800 },
2801#endif
Shanker Donthineni90922a22017-03-07 08:20:38 -06002802#ifdef CONFIG_QCOM_QDF2400_ERRATUM_0065
2803 {
2804 .desc = "ITS: QDF2400 erratum 0065",
2805 .iidr = 0x00001070, /* QDF2400 ITS rev 1.x */
2806 .mask = 0xffffffff,
2807 .init = its_enable_quirk_qdf2400_e0065,
2808 },
2809#endif
Robert Richter67510cc2015-09-21 22:58:37 +02002810 {
2811 }
2812};
2813
2814static void its_enable_quirks(struct its_node *its)
2815{
2816 u32 iidr = readl_relaxed(its->base + GITS_IIDR);
2817
2818 gic_enable_quirks(iidr, its_quirks, its);
2819}
2820
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002821static int its_init_domain(struct fwnode_handle *handle, struct its_node *its)
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02002822{
2823 struct irq_domain *inner_domain;
2824 struct msi_domain_info *info;
2825
2826 info = kzalloc(sizeof(*info), GFP_KERNEL);
2827 if (!info)
2828 return -ENOMEM;
2829
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002830 inner_domain = irq_domain_create_tree(handle, &its_domain_ops, its);
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02002831 if (!inner_domain) {
2832 kfree(info);
2833 return -ENOMEM;
2834 }
2835
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002836 inner_domain->parent = its_parent;
Marc Zyngier96f0d932017-06-22 11:42:50 +01002837 irq_domain_update_bus_token(inner_domain, DOMAIN_BUS_NEXUS);
Eric Auger59768522017-01-19 20:58:00 +00002838 inner_domain->flags |= IRQ_DOMAIN_FLAG_MSI_REMAP;
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02002839 info->ops = &its_msi_domain_ops;
2840 info->data = its;
2841 inner_domain->host_data = info;
2842
2843 return 0;
2844}
2845
Marc Zyngier8fff27a2016-12-20 13:41:55 +00002846static int its_init_vpe_domain(void)
2847{
Marc Zyngier20b3d542016-12-20 15:23:22 +00002848 struct its_node *its;
2849 u32 devid;
2850 int entries;
2851
2852 if (gic_rdists->has_direct_lpi) {
2853 pr_info("ITS: Using DirectLPI for VPE invalidation\n");
2854 return 0;
2855 }
2856
2857 /* Any ITS will do, even if not v4 */
2858 its = list_first_entry(&its_nodes, struct its_node, entry);
2859
2860 entries = roundup_pow_of_two(nr_cpu_ids);
2861 vpe_proxy.vpes = kzalloc(sizeof(*vpe_proxy.vpes) * entries,
2862 GFP_KERNEL);
2863 if (!vpe_proxy.vpes) {
2864 pr_err("ITS: Can't allocate GICv4 proxy device array\n");
2865 return -ENOMEM;
2866 }
2867
2868 /* Use the last possible DevID */
2869 devid = GENMASK(its->device_ids - 1, 0);
2870 vpe_proxy.dev = its_create_device(its, devid, entries, false);
2871 if (!vpe_proxy.dev) {
2872 kfree(vpe_proxy.vpes);
2873 pr_err("ITS: Can't allocate GICv4 proxy device\n");
2874 return -ENOMEM;
2875 }
2876
Shanker Donthinenic427a472017-09-23 13:50:19 -05002877 BUG_ON(entries > vpe_proxy.dev->nr_ites);
Marc Zyngier20b3d542016-12-20 15:23:22 +00002878
2879 raw_spin_lock_init(&vpe_proxy.lock);
2880 vpe_proxy.next_victim = 0;
2881 pr_info("ITS: Allocated DevID %x as GICv4 proxy device (%d slots)\n",
2882 devid, vpe_proxy.dev->nr_ites);
2883
Marc Zyngier8fff27a2016-12-20 13:41:55 +00002884 return 0;
2885}
2886
Marc Zyngier3dfa5762016-12-19 17:25:54 +00002887static int __init its_compute_its_list_map(struct resource *res,
2888 void __iomem *its_base)
2889{
2890 int its_number;
2891 u32 ctlr;
2892
2893 /*
2894 * This is assumed to be done early enough that we're
2895 * guaranteed to be single-threaded, hence no
2896 * locking. Should this change, we should address
2897 * this.
2898 */
2899 its_number = find_first_zero_bit(&its_list_map, ITS_LIST_MAX);
2900 if (its_number >= ITS_LIST_MAX) {
2901 pr_err("ITS@%pa: No ITSList entry available!\n",
2902 &res->start);
2903 return -EINVAL;
2904 }
2905
2906 ctlr = readl_relaxed(its_base + GITS_CTLR);
2907 ctlr &= ~GITS_CTLR_ITS_NUMBER;
2908 ctlr |= its_number << GITS_CTLR_ITS_NUMBER_SHIFT;
2909 writel_relaxed(ctlr, its_base + GITS_CTLR);
2910 ctlr = readl_relaxed(its_base + GITS_CTLR);
2911 if ((ctlr & GITS_CTLR_ITS_NUMBER) != (its_number << GITS_CTLR_ITS_NUMBER_SHIFT)) {
2912 its_number = ctlr & GITS_CTLR_ITS_NUMBER;
2913 its_number >>= GITS_CTLR_ITS_NUMBER_SHIFT;
2914 }
2915
2916 if (test_and_set_bit(its_number, &its_list_map)) {
2917 pr_err("ITS@%pa: Duplicate ITSList entry %d\n",
2918 &res->start, its_number);
2919 return -EINVAL;
2920 }
2921
2922 return its_number;
2923}
2924
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002925static int __init its_probe_one(struct resource *res,
2926 struct fwnode_handle *handle, int numa_node)
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002927{
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002928 struct its_node *its;
2929 void __iomem *its_base;
Marc Zyngier3dfa5762016-12-19 17:25:54 +00002930 u32 val, ctlr;
2931 u64 baser, tmp, typer;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002932 int err;
2933
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002934 its_base = ioremap(res->start, resource_size(res));
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002935 if (!its_base) {
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002936 pr_warn("ITS@%pa: Unable to map ITS registers\n", &res->start);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002937 return -ENOMEM;
2938 }
2939
2940 val = readl_relaxed(its_base + GITS_PIDR2) & GIC_PIDR2_ARCH_MASK;
2941 if (val != 0x30 && val != 0x40) {
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002942 pr_warn("ITS@%pa: No ITS detected, giving up\n", &res->start);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002943 err = -ENODEV;
2944 goto out_unmap;
2945 }
2946
Yun Wu4559fbb2015-03-06 16:37:50 +00002947 err = its_force_quiescent(its_base);
2948 if (err) {
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002949 pr_warn("ITS@%pa: Failed to quiesce, giving up\n", &res->start);
Yun Wu4559fbb2015-03-06 16:37:50 +00002950 goto out_unmap;
2951 }
2952
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002953 pr_info("ITS %pR\n", res);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002954
2955 its = kzalloc(sizeof(*its), GFP_KERNEL);
2956 if (!its) {
2957 err = -ENOMEM;
2958 goto out_unmap;
2959 }
2960
2961 raw_spin_lock_init(&its->lock);
2962 INIT_LIST_HEAD(&its->entry);
2963 INIT_LIST_HEAD(&its->its_device_list);
Marc Zyngier3dfa5762016-12-19 17:25:54 +00002964 typer = gic_read_typer(its_base + GITS_TYPER);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002965 its->base = its_base;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002966 its->phys_base = res->start;
Marc Zyngier3dfa5762016-12-19 17:25:54 +00002967 its->ite_size = GITS_TYPER_ITT_ENTRY_SIZE(typer);
2968 its->is_v4 = !!(typer & GITS_TYPER_VLPIS);
2969 if (its->is_v4) {
2970 if (!(typer & GITS_TYPER_VMOVP)) {
2971 err = its_compute_its_list_map(res, its_base);
2972 if (err < 0)
2973 goto out_free_its;
2974
2975 pr_info("ITS@%pa: Using ITS number %d\n",
2976 &res->start, err);
2977 } else {
2978 pr_info("ITS@%pa: Single VMOVP capable\n", &res->start);
2979 }
2980 }
2981
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02002982 its->numa_node = numa_node;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002983
Robert Richter5bc13c22017-02-01 18:38:25 +01002984 its->cmd_base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
2985 get_order(ITS_CMD_QUEUE_SZ));
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002986 if (!its->cmd_base) {
2987 err = -ENOMEM;
2988 goto out_free_its;
2989 }
2990 its->cmd_write = its->cmd_base;
2991
Robert Richter67510cc2015-09-21 22:58:37 +02002992 its_enable_quirks(its);
2993
Shanker Donthineni0e0b0f62016-06-06 18:17:31 -05002994 err = its_alloc_tables(its);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00002995 if (err)
2996 goto out_free_cmd;
2997
2998 err = its_alloc_collections(its);
2999 if (err)
3000 goto out_free_tables;
3001
3002 baser = (virt_to_phys(its->cmd_base) |
Shanker Donthineni2fd632a2017-01-25 21:51:41 -06003003 GITS_CBASER_RaWaWb |
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003004 GITS_CBASER_InnerShareable |
3005 (ITS_CMD_QUEUE_SZ / SZ_4K - 1) |
3006 GITS_CBASER_VALID);
3007
Vladimir Murzin0968a612016-11-02 11:54:06 +00003008 gits_write_cbaser(baser, its->base + GITS_CBASER);
3009 tmp = gits_read_cbaser(its->base + GITS_CBASER);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003010
Marc Zyngier4ad3e362015-03-27 14:15:04 +00003011 if ((tmp ^ baser) & GITS_CBASER_SHAREABILITY_MASK) {
Marc Zyngier241a3862015-03-27 14:15:05 +00003012 if (!(tmp & GITS_CBASER_SHAREABILITY_MASK)) {
3013 /*
3014 * The HW reports non-shareable, we must
3015 * remove the cacheability attributes as
3016 * well.
3017 */
3018 baser &= ~(GITS_CBASER_SHAREABILITY_MASK |
3019 GITS_CBASER_CACHEABILITY_MASK);
3020 baser |= GITS_CBASER_nC;
Vladimir Murzin0968a612016-11-02 11:54:06 +00003021 gits_write_cbaser(baser, its->base + GITS_CBASER);
Marc Zyngier241a3862015-03-27 14:15:05 +00003022 }
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003023 pr_info("ITS: using cache flushing for cmd queue\n");
3024 its->flags |= ITS_FLAGS_CMDQ_NEEDS_FLUSHING;
3025 }
3026
Vladimir Murzin0968a612016-11-02 11:54:06 +00003027 gits_write_cwriter(0, its->base + GITS_CWRITER);
Marc Zyngier3dfa5762016-12-19 17:25:54 +00003028 ctlr = readl_relaxed(its->base + GITS_CTLR);
Marc Zyngierd51c4b42017-06-27 21:24:25 +01003029 ctlr |= GITS_CTLR_ENABLE;
3030 if (its->is_v4)
3031 ctlr |= GITS_CTLR_ImDe;
3032 writel_relaxed(ctlr, its->base + GITS_CTLR);
Marc Zyngier241a3862015-03-27 14:15:05 +00003033
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003034 err = its_init_domain(handle, its);
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003035 if (err)
3036 goto out_free_tables;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003037
3038 spin_lock(&its_lock);
3039 list_add(&its->entry, &its_nodes);
3040 spin_unlock(&its_lock);
3041
3042 return 0;
3043
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003044out_free_tables:
3045 its_free_tables(its);
3046out_free_cmd:
Robert Richter5bc13c22017-02-01 18:38:25 +01003047 free_pages((unsigned long)its->cmd_base, get_order(ITS_CMD_QUEUE_SZ));
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003048out_free_its:
3049 kfree(its);
3050out_unmap:
3051 iounmap(its_base);
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003052 pr_err("ITS@%pa: failed probing (%d)\n", &res->start, err);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003053 return err;
3054}
3055
3056static bool gic_rdists_supports_plpis(void)
3057{
Marc Zyngier589ce5f2016-10-14 15:13:07 +01003058 return !!(gic_read_typer(gic_data_rdist_rd_base() + GICR_TYPER) & GICR_TYPER_PLPIS);
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003059}
3060
3061int its_cpu_init(void)
3062{
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003063 if (!list_empty(&its_nodes)) {
Vladimir Murzin16acae72015-03-06 16:37:40 +00003064 if (!gic_rdists_supports_plpis()) {
3065 pr_info("CPU%d: LPIs not supported\n", smp_processor_id());
3066 return -ENXIO;
3067 }
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003068 its_cpu_init_lpis();
3069 its_cpu_init_collection();
3070 }
3071
3072 return 0;
3073}
3074
Arvind Yadav935bba72017-06-22 16:05:30 +05303075static const struct of_device_id its_device_id[] = {
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003076 { .compatible = "arm,gic-v3-its", },
3077 {},
3078};
3079
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003080static int __init its_of_probe(struct device_node *node)
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003081{
3082 struct device_node *np;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003083 struct resource res;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003084
3085 for (np = of_find_matching_node(node, its_device_id); np;
3086 np = of_find_matching_node(np, its_device_id)) {
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003087 if (!of_property_read_bool(np, "msi-controller")) {
Rob Herringe81f54c2017-07-18 16:43:10 -05003088 pr_warn("%pOF: no msi-controller property, ITS ignored\n",
3089 np);
Tomasz Nowickid14ae5e2016-09-12 20:32:23 +02003090 continue;
3091 }
3092
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003093 if (of_address_to_resource(np, 0, &res)) {
Rob Herringe81f54c2017-07-18 16:43:10 -05003094 pr_warn("%pOF: no regs?\n", np);
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003095 continue;
3096 }
3097
3098 its_probe_one(&res, &np->fwnode, of_node_to_nid(np));
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003099 }
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003100 return 0;
3101}
3102
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003103#ifdef CONFIG_ACPI
3104
3105#define ACPI_GICV3_ITS_MEM_SIZE (SZ_128K)
3106
Robert Richterd1ce2632017-07-12 15:25:09 +02003107#ifdef CONFIG_ACPI_NUMA
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303108struct its_srat_map {
3109 /* numa node id */
3110 u32 numa_node;
3111 /* GIC ITS ID */
3112 u32 its_id;
3113};
3114
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003115static struct its_srat_map *its_srat_maps __initdata;
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303116static int its_in_srat __initdata;
3117
3118static int __init acpi_get_its_numa_node(u32 its_id)
3119{
3120 int i;
3121
3122 for (i = 0; i < its_in_srat; i++) {
3123 if (its_id == its_srat_maps[i].its_id)
3124 return its_srat_maps[i].numa_node;
3125 }
3126 return NUMA_NO_NODE;
3127}
3128
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003129static int __init gic_acpi_match_srat_its(struct acpi_subtable_header *header,
3130 const unsigned long end)
3131{
3132 return 0;
3133}
3134
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303135static int __init gic_acpi_parse_srat_its(struct acpi_subtable_header *header,
3136 const unsigned long end)
3137{
3138 int node;
3139 struct acpi_srat_gic_its_affinity *its_affinity;
3140
3141 its_affinity = (struct acpi_srat_gic_its_affinity *)header;
3142 if (!its_affinity)
3143 return -EINVAL;
3144
3145 if (its_affinity->header.length < sizeof(*its_affinity)) {
3146 pr_err("SRAT: Invalid header length %d in ITS affinity\n",
3147 its_affinity->header.length);
3148 return -EINVAL;
3149 }
3150
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303151 node = acpi_map_pxm_to_node(its_affinity->proximity_domain);
3152
3153 if (node == NUMA_NO_NODE || node >= MAX_NUMNODES) {
3154 pr_err("SRAT: Invalid NUMA node %d in ITS affinity\n", node);
3155 return 0;
3156 }
3157
3158 its_srat_maps[its_in_srat].numa_node = node;
3159 its_srat_maps[its_in_srat].its_id = its_affinity->its_id;
3160 its_in_srat++;
3161 pr_info("SRAT: PXM %d -> ITS %d -> Node %d\n",
3162 its_affinity->proximity_domain, its_affinity->its_id, node);
3163
3164 return 0;
3165}
3166
3167static void __init acpi_table_parse_srat_its(void)
3168{
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003169 int count;
3170
3171 count = acpi_table_parse_entries(ACPI_SIG_SRAT,
3172 sizeof(struct acpi_table_srat),
3173 ACPI_SRAT_TYPE_GIC_ITS_AFFINITY,
3174 gic_acpi_match_srat_its, 0);
3175 if (count <= 0)
3176 return;
3177
3178 its_srat_maps = kmalloc(count * sizeof(struct its_srat_map),
3179 GFP_KERNEL);
3180 if (!its_srat_maps) {
3181 pr_warn("SRAT: Failed to allocate memory for its_srat_maps!\n");
3182 return;
3183 }
3184
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303185 acpi_table_parse_entries(ACPI_SIG_SRAT,
3186 sizeof(struct acpi_table_srat),
3187 ACPI_SRAT_TYPE_GIC_ITS_AFFINITY,
3188 gic_acpi_parse_srat_its, 0);
3189}
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003190
3191/* free the its_srat_maps after ITS probing */
3192static void __init acpi_its_srat_maps_free(void)
3193{
3194 kfree(its_srat_maps);
3195}
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303196#else
3197static void __init acpi_table_parse_srat_its(void) { }
3198static int __init acpi_get_its_numa_node(u32 its_id) { return NUMA_NO_NODE; }
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003199static void __init acpi_its_srat_maps_free(void) { }
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303200#endif
3201
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003202static int __init gic_acpi_parse_madt_its(struct acpi_subtable_header *header,
3203 const unsigned long end)
3204{
3205 struct acpi_madt_generic_translator *its_entry;
3206 struct fwnode_handle *dom_handle;
3207 struct resource res;
3208 int err;
3209
3210 its_entry = (struct acpi_madt_generic_translator *)header;
3211 memset(&res, 0, sizeof(res));
3212 res.start = its_entry->base_address;
3213 res.end = its_entry->base_address + ACPI_GICV3_ITS_MEM_SIZE - 1;
3214 res.flags = IORESOURCE_MEM;
3215
3216 dom_handle = irq_domain_alloc_fwnode((void *)its_entry->base_address);
3217 if (!dom_handle) {
3218 pr_err("ITS@%pa: Unable to allocate GICv3 ITS domain token\n",
3219 &res.start);
3220 return -ENOMEM;
3221 }
3222
3223 err = iort_register_domain_token(its_entry->translation_id, dom_handle);
3224 if (err) {
3225 pr_err("ITS@%pa: Unable to register GICv3 ITS domain token (ITS ID %d) to IORT\n",
3226 &res.start, its_entry->translation_id);
3227 goto dom_err;
3228 }
3229
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303230 err = its_probe_one(&res, dom_handle,
3231 acpi_get_its_numa_node(its_entry->translation_id));
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003232 if (!err)
3233 return 0;
3234
3235 iort_deregister_domain_token(its_entry->translation_id);
3236dom_err:
3237 irq_domain_free_fwnode(dom_handle);
3238 return err;
3239}
3240
3241static void __init its_acpi_probe(void)
3242{
Ganapatrao Kulkarnidbd2b822017-06-22 11:40:12 +05303243 acpi_table_parse_srat_its();
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003244 acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_TRANSLATOR,
3245 gic_acpi_parse_madt_its, 0);
Hanjun Guofdf6e7a2017-07-26 18:15:49 +08003246 acpi_its_srat_maps_free();
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003247}
3248#else
3249static void __init its_acpi_probe(void) { }
3250#endif
3251
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003252int __init its_init(struct fwnode_handle *handle, struct rdists *rdists,
3253 struct irq_domain *parent_domain)
3254{
3255 struct device_node *of_node;
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003256 struct its_node *its;
3257 bool has_v4 = false;
3258 int err;
Tomasz Nowickidb40f0a2016-09-12 20:32:24 +02003259
3260 its_parent = parent_domain;
3261 of_node = to_of_node(handle);
3262 if (of_node)
3263 its_of_probe(of_node);
3264 else
Tomasz Nowicki3f010cf2016-09-12 20:32:25 +02003265 its_acpi_probe();
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003266
3267 if (list_empty(&its_nodes)) {
3268 pr_warn("ITS: No ITS available, not enabling LPIs\n");
3269 return -ENXIO;
3270 }
3271
3272 gic_rdists = rdists;
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003273 err = its_alloc_lpi_tables();
3274 if (err)
3275 return err;
3276
3277 list_for_each_entry(its, &its_nodes, entry)
3278 has_v4 |= its->is_v4;
3279
3280 if (has_v4 & rdists->has_vlpis) {
Marc Zyngier3d63cb52016-12-20 15:31:54 +00003281 if (its_init_vpe_domain() ||
3282 its_init_v4(parent_domain, &its_vpe_domain_ops)) {
Marc Zyngier8fff27a2016-12-20 13:41:55 +00003283 rdists->has_vlpis = false;
3284 pr_err("ITS: Disabling GICv4 support\n");
3285 }
3286 }
3287
3288 return 0;
Marc Zyngier4c21f3c2014-11-24 14:35:17 +00003289}