irqchip/gicv3-its: Read typer register outside the loop
[deliverable/linux.git] / drivers / irqchip / irq-gic-v3-its.c
CommitLineData
cc2d3216
MZ
1/*
2 * Copyright (C) 2013, 2014 ARM Limited, All Rights Reserved.
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include <linux/bitmap.h>
19#include <linux/cpu.h>
20#include <linux/delay.h>
21#include <linux/interrupt.h>
22#include <linux/log2.h>
23#include <linux/mm.h>
24#include <linux/msi.h>
25#include <linux/of.h>
26#include <linux/of_address.h>
27#include <linux/of_irq.h>
28#include <linux/of_pci.h>
29#include <linux/of_platform.h>
30#include <linux/percpu.h>
31#include <linux/slab.h>
32
41a83e06 33#include <linux/irqchip.h>
cc2d3216
MZ
34#include <linux/irqchip/arm-gic-v3.h>
35
36#include <asm/cacheflush.h>
37#include <asm/cputype.h>
38#include <asm/exception.h>
39
cc2d3216
MZ
40#define ITS_FLAGS_CMDQ_NEEDS_FLUSHING (1 << 0)
41
c48ed51c
MZ
42#define RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING (1 << 0)
43
cc2d3216
MZ
44/*
45 * Collection structure - just an ID, and a redistributor address to
46 * ping. We use one per CPU as a bag of interrupts assigned to this
47 * CPU.
48 */
49struct its_collection {
50 u64 target_address;
51 u16 col_id;
52};
53
54/*
55 * The ITS structure - contains most of the infrastructure, with the
841514ab
MZ
56 * top-level MSI domain, the command queue, the collections, and the
57 * list of devices writing to it.
cc2d3216
MZ
58 */
59struct its_node {
60 raw_spinlock_t lock;
61 struct list_head entry;
cc2d3216
MZ
62 void __iomem *base;
63 unsigned long phys_base;
64 struct its_cmd_block *cmd_base;
65 struct its_cmd_block *cmd_write;
66 void *tables[GITS_BASER_NR_REGS];
67 struct its_collection *collections;
68 struct list_head its_device_list;
69 u64 flags;
70 u32 ite_size;
71};
72
73#define ITS_ITT_ALIGN SZ_256
74
591e5bec
MZ
75struct event_lpi_map {
76 unsigned long *lpi_map;
77 u16 *col_map;
78 irq_hw_number_t lpi_base;
79 int nr_lpis;
80};
81
cc2d3216
MZ
82/*
83 * The ITS view of a device - belongs to an ITS, a collection, owns an
84 * interrupt translation table, and a list of interrupts.
85 */
86struct its_device {
87 struct list_head entry;
88 struct its_node *its;
591e5bec 89 struct event_lpi_map event_map;
cc2d3216 90 void *itt;
cc2d3216
MZ
91 u32 nr_ites;
92 u32 device_id;
93};
94
1ac19ca6
MZ
95static LIST_HEAD(its_nodes);
96static DEFINE_SPINLOCK(its_lock);
97static struct device_node *gic_root_node;
98static struct rdists *gic_rdists;
99
100#define gic_data_rdist() (raw_cpu_ptr(gic_rdists->rdist))
101#define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base)
102
591e5bec
MZ
103static struct its_collection *dev_event_to_col(struct its_device *its_dev,
104 u32 event)
105{
106 struct its_node *its = its_dev->its;
107
108 return its->collections + its_dev->event_map.col_map[event];
109}
110
cc2d3216
MZ
111/*
112 * ITS command descriptors - parameters to be encoded in a command
113 * block.
114 */
115struct its_cmd_desc {
116 union {
117 struct {
118 struct its_device *dev;
119 u32 event_id;
120 } its_inv_cmd;
121
122 struct {
123 struct its_device *dev;
124 u32 event_id;
125 } its_int_cmd;
126
127 struct {
128 struct its_device *dev;
129 int valid;
130 } its_mapd_cmd;
131
132 struct {
133 struct its_collection *col;
134 int valid;
135 } its_mapc_cmd;
136
137 struct {
138 struct its_device *dev;
139 u32 phys_id;
140 u32 event_id;
141 } its_mapvi_cmd;
142
143 struct {
144 struct its_device *dev;
145 struct its_collection *col;
591e5bec 146 u32 event_id;
cc2d3216
MZ
147 } its_movi_cmd;
148
149 struct {
150 struct its_device *dev;
151 u32 event_id;
152 } its_discard_cmd;
153
154 struct {
155 struct its_collection *col;
156 } its_invall_cmd;
157 };
158};
159
160/*
161 * The ITS command block, which is what the ITS actually parses.
162 */
163struct its_cmd_block {
164 u64 raw_cmd[4];
165};
166
167#define ITS_CMD_QUEUE_SZ SZ_64K
168#define ITS_CMD_QUEUE_NR_ENTRIES (ITS_CMD_QUEUE_SZ / sizeof(struct its_cmd_block))
169
170typedef struct its_collection *(*its_cmd_builder_t)(struct its_cmd_block *,
171 struct its_cmd_desc *);
172
173static void its_encode_cmd(struct its_cmd_block *cmd, u8 cmd_nr)
174{
175 cmd->raw_cmd[0] &= ~0xffUL;
176 cmd->raw_cmd[0] |= cmd_nr;
177}
178
179static void its_encode_devid(struct its_cmd_block *cmd, u32 devid)
180{
7e195ba0 181 cmd->raw_cmd[0] &= BIT_ULL(32) - 1;
cc2d3216
MZ
182 cmd->raw_cmd[0] |= ((u64)devid) << 32;
183}
184
185static void its_encode_event_id(struct its_cmd_block *cmd, u32 id)
186{
187 cmd->raw_cmd[1] &= ~0xffffffffUL;
188 cmd->raw_cmd[1] |= id;
189}
190
191static void its_encode_phys_id(struct its_cmd_block *cmd, u32 phys_id)
192{
193 cmd->raw_cmd[1] &= 0xffffffffUL;
194 cmd->raw_cmd[1] |= ((u64)phys_id) << 32;
195}
196
197static void its_encode_size(struct its_cmd_block *cmd, u8 size)
198{
199 cmd->raw_cmd[1] &= ~0x1fUL;
200 cmd->raw_cmd[1] |= size & 0x1f;
201}
202
203static void its_encode_itt(struct its_cmd_block *cmd, u64 itt_addr)
204{
205 cmd->raw_cmd[2] &= ~0xffffffffffffUL;
206 cmd->raw_cmd[2] |= itt_addr & 0xffffffffff00UL;
207}
208
209static void its_encode_valid(struct its_cmd_block *cmd, int valid)
210{
211 cmd->raw_cmd[2] &= ~(1UL << 63);
212 cmd->raw_cmd[2] |= ((u64)!!valid) << 63;
213}
214
215static void its_encode_target(struct its_cmd_block *cmd, u64 target_addr)
216{
217 cmd->raw_cmd[2] &= ~(0xffffffffUL << 16);
218 cmd->raw_cmd[2] |= (target_addr & (0xffffffffUL << 16));
219}
220
221static void its_encode_collection(struct its_cmd_block *cmd, u16 col)
222{
223 cmd->raw_cmd[2] &= ~0xffffUL;
224 cmd->raw_cmd[2] |= col;
225}
226
227static inline void its_fixup_cmd(struct its_cmd_block *cmd)
228{
229 /* Let's fixup BE commands */
230 cmd->raw_cmd[0] = cpu_to_le64(cmd->raw_cmd[0]);
231 cmd->raw_cmd[1] = cpu_to_le64(cmd->raw_cmd[1]);
232 cmd->raw_cmd[2] = cpu_to_le64(cmd->raw_cmd[2]);
233 cmd->raw_cmd[3] = cpu_to_le64(cmd->raw_cmd[3]);
234}
235
236static struct its_collection *its_build_mapd_cmd(struct its_cmd_block *cmd,
237 struct its_cmd_desc *desc)
238{
239 unsigned long itt_addr;
c8481267 240 u8 size = ilog2(desc->its_mapd_cmd.dev->nr_ites);
cc2d3216
MZ
241
242 itt_addr = virt_to_phys(desc->its_mapd_cmd.dev->itt);
243 itt_addr = ALIGN(itt_addr, ITS_ITT_ALIGN);
244
245 its_encode_cmd(cmd, GITS_CMD_MAPD);
246 its_encode_devid(cmd, desc->its_mapd_cmd.dev->device_id);
247 its_encode_size(cmd, size - 1);
248 its_encode_itt(cmd, itt_addr);
249 its_encode_valid(cmd, desc->its_mapd_cmd.valid);
250
251 its_fixup_cmd(cmd);
252
591e5bec 253 return NULL;
cc2d3216
MZ
254}
255
256static struct its_collection *its_build_mapc_cmd(struct its_cmd_block *cmd,
257 struct its_cmd_desc *desc)
258{
259 its_encode_cmd(cmd, GITS_CMD_MAPC);
260 its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id);
261 its_encode_target(cmd, desc->its_mapc_cmd.col->target_address);
262 its_encode_valid(cmd, desc->its_mapc_cmd.valid);
263
264 its_fixup_cmd(cmd);
265
266 return desc->its_mapc_cmd.col;
267}
268
269static struct its_collection *its_build_mapvi_cmd(struct its_cmd_block *cmd,
270 struct its_cmd_desc *desc)
271{
591e5bec
MZ
272 struct its_collection *col;
273
274 col = dev_event_to_col(desc->its_mapvi_cmd.dev,
275 desc->its_mapvi_cmd.event_id);
276
cc2d3216
MZ
277 its_encode_cmd(cmd, GITS_CMD_MAPVI);
278 its_encode_devid(cmd, desc->its_mapvi_cmd.dev->device_id);
279 its_encode_event_id(cmd, desc->its_mapvi_cmd.event_id);
280 its_encode_phys_id(cmd, desc->its_mapvi_cmd.phys_id);
591e5bec 281 its_encode_collection(cmd, col->col_id);
cc2d3216
MZ
282
283 its_fixup_cmd(cmd);
284
591e5bec 285 return col;
cc2d3216
MZ
286}
287
288static struct its_collection *its_build_movi_cmd(struct its_cmd_block *cmd,
289 struct its_cmd_desc *desc)
290{
591e5bec
MZ
291 struct its_collection *col;
292
293 col = dev_event_to_col(desc->its_movi_cmd.dev,
294 desc->its_movi_cmd.event_id);
295
cc2d3216
MZ
296 its_encode_cmd(cmd, GITS_CMD_MOVI);
297 its_encode_devid(cmd, desc->its_movi_cmd.dev->device_id);
591e5bec 298 its_encode_event_id(cmd, desc->its_movi_cmd.event_id);
cc2d3216
MZ
299 its_encode_collection(cmd, desc->its_movi_cmd.col->col_id);
300
301 its_fixup_cmd(cmd);
302
591e5bec 303 return col;
cc2d3216
MZ
304}
305
306static struct its_collection *its_build_discard_cmd(struct its_cmd_block *cmd,
307 struct its_cmd_desc *desc)
308{
591e5bec
MZ
309 struct its_collection *col;
310
311 col = dev_event_to_col(desc->its_discard_cmd.dev,
312 desc->its_discard_cmd.event_id);
313
cc2d3216
MZ
314 its_encode_cmd(cmd, GITS_CMD_DISCARD);
315 its_encode_devid(cmd, desc->its_discard_cmd.dev->device_id);
316 its_encode_event_id(cmd, desc->its_discard_cmd.event_id);
317
318 its_fixup_cmd(cmd);
319
591e5bec 320 return col;
cc2d3216
MZ
321}
322
323static struct its_collection *its_build_inv_cmd(struct its_cmd_block *cmd,
324 struct its_cmd_desc *desc)
325{
591e5bec
MZ
326 struct its_collection *col;
327
328 col = dev_event_to_col(desc->its_inv_cmd.dev,
329 desc->its_inv_cmd.event_id);
330
cc2d3216
MZ
331 its_encode_cmd(cmd, GITS_CMD_INV);
332 its_encode_devid(cmd, desc->its_inv_cmd.dev->device_id);
333 its_encode_event_id(cmd, desc->its_inv_cmd.event_id);
334
335 its_fixup_cmd(cmd);
336
591e5bec 337 return col;
cc2d3216
MZ
338}
339
340static struct its_collection *its_build_invall_cmd(struct its_cmd_block *cmd,
341 struct its_cmd_desc *desc)
342{
343 its_encode_cmd(cmd, GITS_CMD_INVALL);
344 its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id);
345
346 its_fixup_cmd(cmd);
347
348 return NULL;
349}
350
351static u64 its_cmd_ptr_to_offset(struct its_node *its,
352 struct its_cmd_block *ptr)
353{
354 return (ptr - its->cmd_base) * sizeof(*ptr);
355}
356
357static int its_queue_full(struct its_node *its)
358{
359 int widx;
360 int ridx;
361
362 widx = its->cmd_write - its->cmd_base;
363 ridx = readl_relaxed(its->base + GITS_CREADR) / sizeof(struct its_cmd_block);
364
365 /* This is incredibly unlikely to happen, unless the ITS locks up. */
366 if (((widx + 1) % ITS_CMD_QUEUE_NR_ENTRIES) == ridx)
367 return 1;
368
369 return 0;
370}
371
372static struct its_cmd_block *its_allocate_entry(struct its_node *its)
373{
374 struct its_cmd_block *cmd;
375 u32 count = 1000000; /* 1s! */
376
377 while (its_queue_full(its)) {
378 count--;
379 if (!count) {
380 pr_err_ratelimited("ITS queue not draining\n");
381 return NULL;
382 }
383 cpu_relax();
384 udelay(1);
385 }
386
387 cmd = its->cmd_write++;
388
389 /* Handle queue wrapping */
390 if (its->cmd_write == (its->cmd_base + ITS_CMD_QUEUE_NR_ENTRIES))
391 its->cmd_write = its->cmd_base;
392
393 return cmd;
394}
395
396static struct its_cmd_block *its_post_commands(struct its_node *its)
397{
398 u64 wr = its_cmd_ptr_to_offset(its, its->cmd_write);
399
400 writel_relaxed(wr, its->base + GITS_CWRITER);
401
402 return its->cmd_write;
403}
404
405static void its_flush_cmd(struct its_node *its, struct its_cmd_block *cmd)
406{
407 /*
408 * Make sure the commands written to memory are observable by
409 * the ITS.
410 */
411 if (its->flags & ITS_FLAGS_CMDQ_NEEDS_FLUSHING)
412 __flush_dcache_area(cmd, sizeof(*cmd));
413 else
414 dsb(ishst);
415}
416
417static void its_wait_for_range_completion(struct its_node *its,
418 struct its_cmd_block *from,
419 struct its_cmd_block *to)
420{
421 u64 rd_idx, from_idx, to_idx;
422 u32 count = 1000000; /* 1s! */
423
424 from_idx = its_cmd_ptr_to_offset(its, from);
425 to_idx = its_cmd_ptr_to_offset(its, to);
426
427 while (1) {
428 rd_idx = readl_relaxed(its->base + GITS_CREADR);
429 if (rd_idx >= to_idx || rd_idx < from_idx)
430 break;
431
432 count--;
433 if (!count) {
434 pr_err_ratelimited("ITS queue timeout\n");
435 return;
436 }
437 cpu_relax();
438 udelay(1);
439 }
440}
441
442static void its_send_single_command(struct its_node *its,
443 its_cmd_builder_t builder,
444 struct its_cmd_desc *desc)
445{
446 struct its_cmd_block *cmd, *sync_cmd, *next_cmd;
447 struct its_collection *sync_col;
3e39e8f5 448 unsigned long flags;
cc2d3216 449
3e39e8f5 450 raw_spin_lock_irqsave(&its->lock, flags);
cc2d3216
MZ
451
452 cmd = its_allocate_entry(its);
453 if (!cmd) { /* We're soooooo screewed... */
454 pr_err_ratelimited("ITS can't allocate, dropping command\n");
3e39e8f5 455 raw_spin_unlock_irqrestore(&its->lock, flags);
cc2d3216
MZ
456 return;
457 }
458 sync_col = builder(cmd, desc);
459 its_flush_cmd(its, cmd);
460
461 if (sync_col) {
462 sync_cmd = its_allocate_entry(its);
463 if (!sync_cmd) {
464 pr_err_ratelimited("ITS can't SYNC, skipping\n");
465 goto post;
466 }
467 its_encode_cmd(sync_cmd, GITS_CMD_SYNC);
468 its_encode_target(sync_cmd, sync_col->target_address);
469 its_fixup_cmd(sync_cmd);
470 its_flush_cmd(its, sync_cmd);
471 }
472
473post:
474 next_cmd = its_post_commands(its);
3e39e8f5 475 raw_spin_unlock_irqrestore(&its->lock, flags);
cc2d3216
MZ
476
477 its_wait_for_range_completion(its, cmd, next_cmd);
478}
479
480static void its_send_inv(struct its_device *dev, u32 event_id)
481{
482 struct its_cmd_desc desc;
483
484 desc.its_inv_cmd.dev = dev;
485 desc.its_inv_cmd.event_id = event_id;
486
487 its_send_single_command(dev->its, its_build_inv_cmd, &desc);
488}
489
490static void its_send_mapd(struct its_device *dev, int valid)
491{
492 struct its_cmd_desc desc;
493
494 desc.its_mapd_cmd.dev = dev;
495 desc.its_mapd_cmd.valid = !!valid;
496
497 its_send_single_command(dev->its, its_build_mapd_cmd, &desc);
498}
499
500static void its_send_mapc(struct its_node *its, struct its_collection *col,
501 int valid)
502{
503 struct its_cmd_desc desc;
504
505 desc.its_mapc_cmd.col = col;
506 desc.its_mapc_cmd.valid = !!valid;
507
508 its_send_single_command(its, its_build_mapc_cmd, &desc);
509}
510
511static void its_send_mapvi(struct its_device *dev, u32 irq_id, u32 id)
512{
513 struct its_cmd_desc desc;
514
515 desc.its_mapvi_cmd.dev = dev;
516 desc.its_mapvi_cmd.phys_id = irq_id;
517 desc.its_mapvi_cmd.event_id = id;
518
519 its_send_single_command(dev->its, its_build_mapvi_cmd, &desc);
520}
521
522static void its_send_movi(struct its_device *dev,
523 struct its_collection *col, u32 id)
524{
525 struct its_cmd_desc desc;
526
527 desc.its_movi_cmd.dev = dev;
528 desc.its_movi_cmd.col = col;
591e5bec 529 desc.its_movi_cmd.event_id = id;
cc2d3216
MZ
530
531 its_send_single_command(dev->its, its_build_movi_cmd, &desc);
532}
533
534static void its_send_discard(struct its_device *dev, u32 id)
535{
536 struct its_cmd_desc desc;
537
538 desc.its_discard_cmd.dev = dev;
539 desc.its_discard_cmd.event_id = id;
540
541 its_send_single_command(dev->its, its_build_discard_cmd, &desc);
542}
543
544static void its_send_invall(struct its_node *its, struct its_collection *col)
545{
546 struct its_cmd_desc desc;
547
548 desc.its_invall_cmd.col = col;
549
550 its_send_single_command(its, its_build_invall_cmd, &desc);
551}
c48ed51c
MZ
552
553/*
554 * irqchip functions - assumes MSI, mostly.
555 */
556
557static inline u32 its_get_event_id(struct irq_data *d)
558{
559 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
591e5bec 560 return d->hwirq - its_dev->event_map.lpi_base;
c48ed51c
MZ
561}
562
563static void lpi_set_config(struct irq_data *d, bool enable)
564{
565 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
566 irq_hw_number_t hwirq = d->hwirq;
567 u32 id = its_get_event_id(d);
568 u8 *cfg = page_address(gic_rdists->prop_page) + hwirq - 8192;
569
570 if (enable)
571 *cfg |= LPI_PROP_ENABLED;
572 else
573 *cfg &= ~LPI_PROP_ENABLED;
574
575 /*
576 * Make the above write visible to the redistributors.
577 * And yes, we're flushing exactly: One. Single. Byte.
578 * Humpf...
579 */
580 if (gic_rdists->flags & RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING)
581 __flush_dcache_area(cfg, sizeof(*cfg));
582 else
583 dsb(ishst);
584 its_send_inv(its_dev, id);
585}
586
587static void its_mask_irq(struct irq_data *d)
588{
589 lpi_set_config(d, false);
590}
591
592static void its_unmask_irq(struct irq_data *d)
593{
594 lpi_set_config(d, true);
595}
596
597static void its_eoi_irq(struct irq_data *d)
598{
599 gic_write_eoir(d->hwirq);
600}
601
602static int its_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
603 bool force)
604{
605 unsigned int cpu = cpumask_any_and(mask_val, cpu_online_mask);
606 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
607 struct its_collection *target_col;
608 u32 id = its_get_event_id(d);
609
610 if (cpu >= nr_cpu_ids)
611 return -EINVAL;
612
613 target_col = &its_dev->its->collections[cpu];
614 its_send_movi(its_dev, target_col, id);
591e5bec 615 its_dev->event_map.col_map[id] = cpu;
c48ed51c
MZ
616
617 return IRQ_SET_MASK_OK_DONE;
618}
619
b48ac83d
MZ
620static void its_irq_compose_msi_msg(struct irq_data *d, struct msi_msg *msg)
621{
622 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
623 struct its_node *its;
624 u64 addr;
625
626 its = its_dev->its;
627 addr = its->phys_base + GITS_TRANSLATER;
628
629 msg->address_lo = addr & ((1UL << 32) - 1);
630 msg->address_hi = addr >> 32;
631 msg->data = its_get_event_id(d);
632}
633
c48ed51c
MZ
634static struct irq_chip its_irq_chip = {
635 .name = "ITS",
636 .irq_mask = its_mask_irq,
637 .irq_unmask = its_unmask_irq,
638 .irq_eoi = its_eoi_irq,
639 .irq_set_affinity = its_set_affinity,
b48ac83d
MZ
640 .irq_compose_msi_msg = its_irq_compose_msi_msg,
641};
642
bf9529f8
MZ
643/*
644 * How we allocate LPIs:
645 *
646 * The GIC has id_bits bits for interrupt identifiers. From there, we
647 * must subtract 8192 which are reserved for SGIs/PPIs/SPIs. Then, as
648 * we allocate LPIs by chunks of 32, we can shift the whole thing by 5
649 * bits to the right.
650 *
651 * This gives us (((1UL << id_bits) - 8192) >> 5) possible allocations.
652 */
653#define IRQS_PER_CHUNK_SHIFT 5
654#define IRQS_PER_CHUNK (1 << IRQS_PER_CHUNK_SHIFT)
655
656static unsigned long *lpi_bitmap;
657static u32 lpi_chunks;
658static DEFINE_SPINLOCK(lpi_lock);
659
660static int its_lpi_to_chunk(int lpi)
661{
662 return (lpi - 8192) >> IRQS_PER_CHUNK_SHIFT;
663}
664
665static int its_chunk_to_lpi(int chunk)
666{
667 return (chunk << IRQS_PER_CHUNK_SHIFT) + 8192;
668}
669
670static int its_lpi_init(u32 id_bits)
671{
672 lpi_chunks = its_lpi_to_chunk(1UL << id_bits);
673
674 lpi_bitmap = kzalloc(BITS_TO_LONGS(lpi_chunks) * sizeof(long),
675 GFP_KERNEL);
676 if (!lpi_bitmap) {
677 lpi_chunks = 0;
678 return -ENOMEM;
679 }
680
681 pr_info("ITS: Allocated %d chunks for LPIs\n", (int)lpi_chunks);
682 return 0;
683}
684
685static unsigned long *its_lpi_alloc_chunks(int nr_irqs, int *base, int *nr_ids)
686{
687 unsigned long *bitmap = NULL;
688 int chunk_id;
689 int nr_chunks;
690 int i;
691
692 nr_chunks = DIV_ROUND_UP(nr_irqs, IRQS_PER_CHUNK);
693
694 spin_lock(&lpi_lock);
695
696 do {
697 chunk_id = bitmap_find_next_zero_area(lpi_bitmap, lpi_chunks,
698 0, nr_chunks, 0);
699 if (chunk_id < lpi_chunks)
700 break;
701
702 nr_chunks--;
703 } while (nr_chunks > 0);
704
705 if (!nr_chunks)
706 goto out;
707
708 bitmap = kzalloc(BITS_TO_LONGS(nr_chunks * IRQS_PER_CHUNK) * sizeof (long),
709 GFP_ATOMIC);
710 if (!bitmap)
711 goto out;
712
713 for (i = 0; i < nr_chunks; i++)
714 set_bit(chunk_id + i, lpi_bitmap);
715
716 *base = its_chunk_to_lpi(chunk_id);
717 *nr_ids = nr_chunks * IRQS_PER_CHUNK;
718
719out:
720 spin_unlock(&lpi_lock);
721
722 return bitmap;
723}
724
591e5bec 725static void its_lpi_free(struct event_lpi_map *map)
bf9529f8 726{
591e5bec
MZ
727 int base = map->lpi_base;
728 int nr_ids = map->nr_lpis;
bf9529f8
MZ
729 int lpi;
730
731 spin_lock(&lpi_lock);
732
733 for (lpi = base; lpi < (base + nr_ids); lpi += IRQS_PER_CHUNK) {
734 int chunk = its_lpi_to_chunk(lpi);
735 BUG_ON(chunk > lpi_chunks);
736 if (test_bit(chunk, lpi_bitmap)) {
737 clear_bit(chunk, lpi_bitmap);
738 } else {
739 pr_err("Bad LPI chunk %d\n", chunk);
740 }
741 }
742
743 spin_unlock(&lpi_lock);
744
591e5bec
MZ
745 kfree(map->lpi_map);
746 kfree(map->col_map);
bf9529f8 747}
1ac19ca6
MZ
748
749/*
750 * We allocate 64kB for PROPBASE. That gives us at most 64K LPIs to
751 * deal with (one configuration byte per interrupt). PENDBASE has to
752 * be 64kB aligned (one bit per LPI, plus 8192 bits for SPI/PPI/SGI).
753 */
754#define LPI_PROPBASE_SZ SZ_64K
755#define LPI_PENDBASE_SZ (LPI_PROPBASE_SZ / 8 + SZ_1K)
756
757/*
758 * This is how many bits of ID we need, including the useless ones.
759 */
760#define LPI_NRBITS ilog2(LPI_PROPBASE_SZ + SZ_8K)
761
762#define LPI_PROP_DEFAULT_PRIO 0xa0
763
764static int __init its_alloc_lpi_tables(void)
765{
766 phys_addr_t paddr;
767
768 gic_rdists->prop_page = alloc_pages(GFP_NOWAIT,
769 get_order(LPI_PROPBASE_SZ));
770 if (!gic_rdists->prop_page) {
771 pr_err("Failed to allocate PROPBASE\n");
772 return -ENOMEM;
773 }
774
775 paddr = page_to_phys(gic_rdists->prop_page);
776 pr_info("GIC: using LPI property table @%pa\n", &paddr);
777
778 /* Priority 0xa0, Group-1, disabled */
779 memset(page_address(gic_rdists->prop_page),
780 LPI_PROP_DEFAULT_PRIO | LPI_PROP_GROUP1,
781 LPI_PROPBASE_SZ);
782
783 /* Make sure the GIC will observe the written configuration */
784 __flush_dcache_area(page_address(gic_rdists->prop_page), LPI_PROPBASE_SZ);
785
786 return 0;
787}
788
789static const char *its_base_type_string[] = {
790 [GITS_BASER_TYPE_DEVICE] = "Devices",
791 [GITS_BASER_TYPE_VCPU] = "Virtual CPUs",
792 [GITS_BASER_TYPE_CPU] = "Physical CPUs",
793 [GITS_BASER_TYPE_COLLECTION] = "Interrupt Collections",
794 [GITS_BASER_TYPE_RESERVED5] = "Reserved (5)",
795 [GITS_BASER_TYPE_RESERVED6] = "Reserved (6)",
796 [GITS_BASER_TYPE_RESERVED7] = "Reserved (7)",
797};
798
799static void its_free_tables(struct its_node *its)
800{
801 int i;
802
803 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
804 if (its->tables[i]) {
805 free_page((unsigned long)its->tables[i]);
806 its->tables[i] = NULL;
807 }
808 }
809}
810
841514ab 811static int its_alloc_tables(const char *node_name, struct its_node *its)
1ac19ca6
MZ
812{
813 int err;
814 int i;
790b57ae 815 int psz = SZ_64K;
1ac19ca6 816 u64 shr = GITS_BASER_InnerShareable;
241a386c 817 u64 cache = GITS_BASER_WaWb;
c14e3673
RR
818 u64 typer = readq_relaxed(its->base + GITS_TYPER);
819 u32 ids = GITS_TYPER_DEVBITS(typer);
1ac19ca6
MZ
820
821 for (i = 0; i < GITS_BASER_NR_REGS; i++) {
822 u64 val = readq_relaxed(its->base + GITS_BASER + i * 8);
823 u64 type = GITS_BASER_TYPE(val);
824 u64 entry_size = GITS_BASER_ENTRY_SIZE(val);
790b57ae 825 int order = get_order(psz);
f54b97ed 826 int alloc_size;
30f21363 827 int alloc_pages;
1ac19ca6
MZ
828 u64 tmp;
829 void *base;
830
831 if (type == GITS_BASER_TYPE_NONE)
832 continue;
833
f54b97ed
MZ
834 /*
835 * Allocate as many entries as required to fit the
836 * range of device IDs that the ITS can grok... The ID
837 * space being incredibly sparse, this results in a
838 * massive waste of memory.
839 *
840 * For other tables, only allocate a single page.
841 */
842 if (type == GITS_BASER_TYPE_DEVICE) {
3ad2a5f5
ML
843 /*
844 * 'order' was initialized earlier to the default page
845 * granule of the the ITS. We can't have an allocation
846 * smaller than that. If the requested allocation
847 * is smaller, round up to the default page granule.
848 */
849 order = max(get_order((1UL << ids) * entry_size),
850 order);
1d27704a
YW
851 if (order >= MAX_ORDER) {
852 order = MAX_ORDER - 1;
853 pr_warn("%s: Device Table too large, reduce its page order to %u\n",
841514ab 854 node_name, order);
1d27704a 855 }
f54b97ed
MZ
856 }
857
858 alloc_size = (1 << order) * PAGE_SIZE;
30f21363
RR
859 alloc_pages = (alloc_size / psz);
860 if (alloc_pages > GITS_BASER_PAGES_MAX) {
861 alloc_pages = GITS_BASER_PAGES_MAX;
862 order = get_order(GITS_BASER_PAGES_MAX * psz);
863 pr_warn("%s: Device Table too large, reduce its page order to %u (%u pages)\n",
864 node_name, order, alloc_pages);
865 }
866
f54b97ed 867 base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
1ac19ca6
MZ
868 if (!base) {
869 err = -ENOMEM;
870 goto out_free;
871 }
872
873 its->tables[i] = base;
874
875retry_baser:
876 val = (virt_to_phys(base) |
877 (type << GITS_BASER_TYPE_SHIFT) |
878 ((entry_size - 1) << GITS_BASER_ENTRY_SIZE_SHIFT) |
241a386c 879 cache |
1ac19ca6
MZ
880 shr |
881 GITS_BASER_VALID);
882
883 switch (psz) {
884 case SZ_4K:
885 val |= GITS_BASER_PAGE_SIZE_4K;
886 break;
887 case SZ_16K:
888 val |= GITS_BASER_PAGE_SIZE_16K;
889 break;
890 case SZ_64K:
891 val |= GITS_BASER_PAGE_SIZE_64K;
892 break;
893 }
894
30f21363 895 val |= alloc_pages - 1;
1ac19ca6
MZ
896
897 writeq_relaxed(val, its->base + GITS_BASER + i * 8);
898 tmp = readq_relaxed(its->base + GITS_BASER + i * 8);
899
900 if ((val ^ tmp) & GITS_BASER_SHAREABILITY_MASK) {
901 /*
902 * Shareability didn't stick. Just use
903 * whatever the read reported, which is likely
904 * to be the only thing this redistributor
241a386c
MZ
905 * supports. If that's zero, make it
906 * non-cacheable as well.
1ac19ca6
MZ
907 */
908 shr = tmp & GITS_BASER_SHAREABILITY_MASK;
5a9a8915 909 if (!shr) {
241a386c 910 cache = GITS_BASER_nC;
5a9a8915
MZ
911 __flush_dcache_area(base, alloc_size);
912 }
1ac19ca6
MZ
913 goto retry_baser;
914 }
915
916 if ((val ^ tmp) & GITS_BASER_PAGE_SIZE_MASK) {
917 /*
918 * Page size didn't stick. Let's try a smaller
919 * size and retry. If we reach 4K, then
920 * something is horribly wrong...
921 */
922 switch (psz) {
923 case SZ_16K:
924 psz = SZ_4K;
925 goto retry_baser;
926 case SZ_64K:
927 psz = SZ_16K;
928 goto retry_baser;
929 }
930 }
931
932 if (val != tmp) {
933 pr_err("ITS: %s: GITS_BASER%d doesn't stick: %lx %lx\n",
841514ab 934 node_name, i,
1ac19ca6
MZ
935 (unsigned long) val, (unsigned long) tmp);
936 err = -ENXIO;
937 goto out_free;
938 }
939
940 pr_info("ITS: allocated %d %s @%lx (psz %dK, shr %d)\n",
f54b97ed 941 (int)(alloc_size / entry_size),
1ac19ca6
MZ
942 its_base_type_string[type],
943 (unsigned long)virt_to_phys(base),
944 psz / SZ_1K, (int)shr >> GITS_BASER_SHAREABILITY_SHIFT);
945 }
946
947 return 0;
948
949out_free:
950 its_free_tables(its);
951
952 return err;
953}
954
955static int its_alloc_collections(struct its_node *its)
956{
957 its->collections = kzalloc(nr_cpu_ids * sizeof(*its->collections),
958 GFP_KERNEL);
959 if (!its->collections)
960 return -ENOMEM;
961
962 return 0;
963}
964
965static void its_cpu_init_lpis(void)
966{
967 void __iomem *rbase = gic_data_rdist_rd_base();
968 struct page *pend_page;
969 u64 val, tmp;
970
971 /* If we didn't allocate the pending table yet, do it now */
972 pend_page = gic_data_rdist()->pend_page;
973 if (!pend_page) {
974 phys_addr_t paddr;
975 /*
976 * The pending pages have to be at least 64kB aligned,
977 * hence the 'max(LPI_PENDBASE_SZ, SZ_64K)' below.
978 */
979 pend_page = alloc_pages(GFP_NOWAIT | __GFP_ZERO,
980 get_order(max(LPI_PENDBASE_SZ, SZ_64K)));
981 if (!pend_page) {
982 pr_err("Failed to allocate PENDBASE for CPU%d\n",
983 smp_processor_id());
984 return;
985 }
986
987 /* Make sure the GIC will observe the zero-ed page */
988 __flush_dcache_area(page_address(pend_page), LPI_PENDBASE_SZ);
989
990 paddr = page_to_phys(pend_page);
991 pr_info("CPU%d: using LPI pending table @%pa\n",
992 smp_processor_id(), &paddr);
993 gic_data_rdist()->pend_page = pend_page;
994 }
995
996 /* Disable LPIs */
997 val = readl_relaxed(rbase + GICR_CTLR);
998 val &= ~GICR_CTLR_ENABLE_LPIS;
999 writel_relaxed(val, rbase + GICR_CTLR);
1000
1001 /*
1002 * Make sure any change to the table is observable by the GIC.
1003 */
1004 dsb(sy);
1005
1006 /* set PROPBASE */
1007 val = (page_to_phys(gic_rdists->prop_page) |
1008 GICR_PROPBASER_InnerShareable |
1009 GICR_PROPBASER_WaWb |
1010 ((LPI_NRBITS - 1) & GICR_PROPBASER_IDBITS_MASK));
1011
1012 writeq_relaxed(val, rbase + GICR_PROPBASER);
1013 tmp = readq_relaxed(rbase + GICR_PROPBASER);
1014
1015 if ((tmp ^ val) & GICR_PROPBASER_SHAREABILITY_MASK) {
241a386c
MZ
1016 if (!(tmp & GICR_PROPBASER_SHAREABILITY_MASK)) {
1017 /*
1018 * The HW reports non-shareable, we must
1019 * remove the cacheability attributes as
1020 * well.
1021 */
1022 val &= ~(GICR_PROPBASER_SHAREABILITY_MASK |
1023 GICR_PROPBASER_CACHEABILITY_MASK);
1024 val |= GICR_PROPBASER_nC;
1025 writeq_relaxed(val, rbase + GICR_PROPBASER);
1026 }
1ac19ca6
MZ
1027 pr_info_once("GIC: using cache flushing for LPI property table\n");
1028 gic_rdists->flags |= RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING;
1029 }
1030
1031 /* set PENDBASE */
1032 val = (page_to_phys(pend_page) |
4ad3e363
MZ
1033 GICR_PENDBASER_InnerShareable |
1034 GICR_PENDBASER_WaWb);
1ac19ca6
MZ
1035
1036 writeq_relaxed(val, rbase + GICR_PENDBASER);
241a386c
MZ
1037 tmp = readq_relaxed(rbase + GICR_PENDBASER);
1038
1039 if (!(tmp & GICR_PENDBASER_SHAREABILITY_MASK)) {
1040 /*
1041 * The HW reports non-shareable, we must remove the
1042 * cacheability attributes as well.
1043 */
1044 val &= ~(GICR_PENDBASER_SHAREABILITY_MASK |
1045 GICR_PENDBASER_CACHEABILITY_MASK);
1046 val |= GICR_PENDBASER_nC;
1047 writeq_relaxed(val, rbase + GICR_PENDBASER);
1048 }
1ac19ca6
MZ
1049
1050 /* Enable LPIs */
1051 val = readl_relaxed(rbase + GICR_CTLR);
1052 val |= GICR_CTLR_ENABLE_LPIS;
1053 writel_relaxed(val, rbase + GICR_CTLR);
1054
1055 /* Make sure the GIC has seen the above */
1056 dsb(sy);
1057}
1058
1059static void its_cpu_init_collection(void)
1060{
1061 struct its_node *its;
1062 int cpu;
1063
1064 spin_lock(&its_lock);
1065 cpu = smp_processor_id();
1066
1067 list_for_each_entry(its, &its_nodes, entry) {
1068 u64 target;
1069
1070 /*
1071 * We now have to bind each collection to its target
1072 * redistributor.
1073 */
1074 if (readq_relaxed(its->base + GITS_TYPER) & GITS_TYPER_PTA) {
1075 /*
1076 * This ITS wants the physical address of the
1077 * redistributor.
1078 */
1079 target = gic_data_rdist()->phys_base;
1080 } else {
1081 /*
1082 * This ITS wants a linear CPU number.
1083 */
1084 target = readq_relaxed(gic_data_rdist_rd_base() + GICR_TYPER);
263fcd31 1085 target = GICR_TYPER_CPU_NUMBER(target) << 16;
1ac19ca6
MZ
1086 }
1087
1088 /* Perform collection mapping */
1089 its->collections[cpu].target_address = target;
1090 its->collections[cpu].col_id = cpu;
1091
1092 its_send_mapc(its, &its->collections[cpu], 1);
1093 its_send_invall(its, &its->collections[cpu]);
1094 }
1095
1096 spin_unlock(&its_lock);
1097}
84a6a2e7
MZ
1098
1099static struct its_device *its_find_device(struct its_node *its, u32 dev_id)
1100{
1101 struct its_device *its_dev = NULL, *tmp;
3e39e8f5 1102 unsigned long flags;
84a6a2e7 1103
3e39e8f5 1104 raw_spin_lock_irqsave(&its->lock, flags);
84a6a2e7
MZ
1105
1106 list_for_each_entry(tmp, &its->its_device_list, entry) {
1107 if (tmp->device_id == dev_id) {
1108 its_dev = tmp;
1109 break;
1110 }
1111 }
1112
3e39e8f5 1113 raw_spin_unlock_irqrestore(&its->lock, flags);
84a6a2e7
MZ
1114
1115 return its_dev;
1116}
1117
1118static struct its_device *its_create_device(struct its_node *its, u32 dev_id,
1119 int nvecs)
1120{
1121 struct its_device *dev;
1122 unsigned long *lpi_map;
3e39e8f5 1123 unsigned long flags;
591e5bec 1124 u16 *col_map = NULL;
84a6a2e7
MZ
1125 void *itt;
1126 int lpi_base;
1127 int nr_lpis;
c8481267 1128 int nr_ites;
84a6a2e7
MZ
1129 int sz;
1130
1131 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
c8481267
MZ
1132 /*
1133 * At least one bit of EventID is being used, hence a minimum
1134 * of two entries. No, the architecture doesn't let you
1135 * express an ITT with a single entry.
1136 */
96555c47 1137 nr_ites = max(2UL, roundup_pow_of_two(nvecs));
c8481267 1138 sz = nr_ites * its->ite_size;
84a6a2e7 1139 sz = max(sz, ITS_ITT_ALIGN) + ITS_ITT_ALIGN - 1;
6c834125 1140 itt = kzalloc(sz, GFP_KERNEL);
84a6a2e7 1141 lpi_map = its_lpi_alloc_chunks(nvecs, &lpi_base, &nr_lpis);
591e5bec
MZ
1142 if (lpi_map)
1143 col_map = kzalloc(sizeof(*col_map) * nr_lpis, GFP_KERNEL);
84a6a2e7 1144
591e5bec 1145 if (!dev || !itt || !lpi_map || !col_map) {
84a6a2e7
MZ
1146 kfree(dev);
1147 kfree(itt);
1148 kfree(lpi_map);
591e5bec 1149 kfree(col_map);
84a6a2e7
MZ
1150 return NULL;
1151 }
1152
5a9a8915
MZ
1153 __flush_dcache_area(itt, sz);
1154
84a6a2e7
MZ
1155 dev->its = its;
1156 dev->itt = itt;
c8481267 1157 dev->nr_ites = nr_ites;
591e5bec
MZ
1158 dev->event_map.lpi_map = lpi_map;
1159 dev->event_map.col_map = col_map;
1160 dev->event_map.lpi_base = lpi_base;
1161 dev->event_map.nr_lpis = nr_lpis;
84a6a2e7
MZ
1162 dev->device_id = dev_id;
1163 INIT_LIST_HEAD(&dev->entry);
1164
3e39e8f5 1165 raw_spin_lock_irqsave(&its->lock, flags);
84a6a2e7 1166 list_add(&dev->entry, &its->its_device_list);
3e39e8f5 1167 raw_spin_unlock_irqrestore(&its->lock, flags);
84a6a2e7 1168
84a6a2e7
MZ
1169 /* Map device to its ITT */
1170 its_send_mapd(dev, 1);
1171
1172 return dev;
1173}
1174
1175static void its_free_device(struct its_device *its_dev)
1176{
3e39e8f5
MZ
1177 unsigned long flags;
1178
1179 raw_spin_lock_irqsave(&its_dev->its->lock, flags);
84a6a2e7 1180 list_del(&its_dev->entry);
3e39e8f5 1181 raw_spin_unlock_irqrestore(&its_dev->its->lock, flags);
84a6a2e7
MZ
1182 kfree(its_dev->itt);
1183 kfree(its_dev);
1184}
b48ac83d
MZ
1185
1186static int its_alloc_device_irq(struct its_device *dev, irq_hw_number_t *hwirq)
1187{
1188 int idx;
1189
591e5bec
MZ
1190 idx = find_first_zero_bit(dev->event_map.lpi_map,
1191 dev->event_map.nr_lpis);
1192 if (idx == dev->event_map.nr_lpis)
b48ac83d
MZ
1193 return -ENOSPC;
1194
591e5bec
MZ
1195 *hwirq = dev->event_map.lpi_base + idx;
1196 set_bit(idx, dev->event_map.lpi_map);
b48ac83d 1197
b48ac83d
MZ
1198 return 0;
1199}
1200
54456db9
MZ
1201static int its_msi_prepare(struct irq_domain *domain, struct device *dev,
1202 int nvec, msi_alloc_info_t *info)
e8137f4f 1203{
b48ac83d 1204 struct its_node *its;
b48ac83d 1205 struct its_device *its_dev;
54456db9
MZ
1206 struct msi_domain_info *msi_info;
1207 u32 dev_id;
1208
1209 /*
1210 * We ignore "dev" entierely, and rely on the dev_id that has
1211 * been passed via the scratchpad. This limits this domain's
1212 * usefulness to upper layers that definitely know that they
1213 * are built on top of the ITS.
1214 */
1215 dev_id = info->scratchpad[0].ul;
1216
1217 msi_info = msi_get_domain_info(domain);
1218 its = msi_info->data;
e8137f4f 1219
f130420e 1220 its_dev = its_find_device(its, dev_id);
e8137f4f
MZ
1221 if (its_dev) {
1222 /*
1223 * We already have seen this ID, probably through
1224 * another alias (PCI bridge of some sort). No need to
1225 * create the device.
1226 */
f130420e 1227 pr_debug("Reusing ITT for devID %x\n", dev_id);
e8137f4f
MZ
1228 goto out;
1229 }
b48ac83d 1230
f130420e 1231 its_dev = its_create_device(its, dev_id, nvec);
b48ac83d
MZ
1232 if (!its_dev)
1233 return -ENOMEM;
1234
f130420e 1235 pr_debug("ITT %d entries, %d bits\n", nvec, ilog2(nvec));
e8137f4f 1236out:
b48ac83d 1237 info->scratchpad[0].ptr = its_dev;
b48ac83d
MZ
1238 return 0;
1239}
1240
54456db9
MZ
1241static struct msi_domain_ops its_msi_domain_ops = {
1242 .msi_prepare = its_msi_prepare,
1243};
1244
b48ac83d
MZ
1245static int its_irq_gic_domain_alloc(struct irq_domain *domain,
1246 unsigned int virq,
1247 irq_hw_number_t hwirq)
1248{
1249 struct of_phandle_args args;
1250
1251 args.np = domain->parent->of_node;
1252 args.args_count = 3;
1253 args.args[0] = GIC_IRQ_TYPE_LPI;
1254 args.args[1] = hwirq;
1255 args.args[2] = IRQ_TYPE_EDGE_RISING;
1256
1257 return irq_domain_alloc_irqs_parent(domain, virq, 1, &args);
1258}
1259
1260static int its_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
1261 unsigned int nr_irqs, void *args)
1262{
1263 msi_alloc_info_t *info = args;
1264 struct its_device *its_dev = info->scratchpad[0].ptr;
1265 irq_hw_number_t hwirq;
1266 int err;
1267 int i;
1268
1269 for (i = 0; i < nr_irqs; i++) {
1270 err = its_alloc_device_irq(its_dev, &hwirq);
1271 if (err)
1272 return err;
1273
1274 err = its_irq_gic_domain_alloc(domain, virq + i, hwirq);
1275 if (err)
1276 return err;
1277
1278 irq_domain_set_hwirq_and_chip(domain, virq + i,
1279 hwirq, &its_irq_chip, its_dev);
f130420e
MZ
1280 pr_debug("ID:%d pID:%d vID:%d\n",
1281 (int)(hwirq - its_dev->event_map.lpi_base),
1282 (int) hwirq, virq + i);
b48ac83d
MZ
1283 }
1284
1285 return 0;
1286}
1287
aca268df
MZ
1288static void its_irq_domain_activate(struct irq_domain *domain,
1289 struct irq_data *d)
1290{
1291 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1292 u32 event = its_get_event_id(d);
1293
591e5bec
MZ
1294 /* Bind the LPI to the first possible CPU */
1295 its_dev->event_map.col_map[event] = cpumask_first(cpu_online_mask);
1296
aca268df
MZ
1297 /* Map the GIC IRQ and event to the device */
1298 its_send_mapvi(its_dev, d->hwirq, event);
1299}
1300
1301static void its_irq_domain_deactivate(struct irq_domain *domain,
1302 struct irq_data *d)
1303{
1304 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1305 u32 event = its_get_event_id(d);
1306
1307 /* Stop the delivery of interrupts */
1308 its_send_discard(its_dev, event);
1309}
1310
b48ac83d
MZ
1311static void its_irq_domain_free(struct irq_domain *domain, unsigned int virq,
1312 unsigned int nr_irqs)
1313{
1314 struct irq_data *d = irq_domain_get_irq_data(domain, virq);
1315 struct its_device *its_dev = irq_data_get_irq_chip_data(d);
1316 int i;
1317
1318 for (i = 0; i < nr_irqs; i++) {
1319 struct irq_data *data = irq_domain_get_irq_data(domain,
1320 virq + i);
aca268df 1321 u32 event = its_get_event_id(data);
b48ac83d
MZ
1322
1323 /* Mark interrupt index as unused */
591e5bec 1324 clear_bit(event, its_dev->event_map.lpi_map);
b48ac83d
MZ
1325
1326 /* Nuke the entry in the domain */
2da39949 1327 irq_domain_reset_irq_data(data);
b48ac83d
MZ
1328 }
1329
1330 /* If all interrupts have been freed, start mopping the floor */
591e5bec
MZ
1331 if (bitmap_empty(its_dev->event_map.lpi_map,
1332 its_dev->event_map.nr_lpis)) {
1333 its_lpi_free(&its_dev->event_map);
b48ac83d
MZ
1334
1335 /* Unmap device/itt */
1336 its_send_mapd(its_dev, 0);
1337 its_free_device(its_dev);
1338 }
1339
1340 irq_domain_free_irqs_parent(domain, virq, nr_irqs);
1341}
1342
1343static const struct irq_domain_ops its_domain_ops = {
1344 .alloc = its_irq_domain_alloc,
1345 .free = its_irq_domain_free,
aca268df
MZ
1346 .activate = its_irq_domain_activate,
1347 .deactivate = its_irq_domain_deactivate,
b48ac83d 1348};
4c21f3c2 1349
4559fbb3
YW
1350static int its_force_quiescent(void __iomem *base)
1351{
1352 u32 count = 1000000; /* 1s */
1353 u32 val;
1354
1355 val = readl_relaxed(base + GITS_CTLR);
1356 if (val & GITS_CTLR_QUIESCENT)
1357 return 0;
1358
1359 /* Disable the generation of all interrupts to this ITS */
1360 val &= ~GITS_CTLR_ENABLE;
1361 writel_relaxed(val, base + GITS_CTLR);
1362
1363 /* Poll GITS_CTLR and wait until ITS becomes quiescent */
1364 while (1) {
1365 val = readl_relaxed(base + GITS_CTLR);
1366 if (val & GITS_CTLR_QUIESCENT)
1367 return 0;
1368
1369 count--;
1370 if (!count)
1371 return -EBUSY;
1372
1373 cpu_relax();
1374 udelay(1);
1375 }
1376}
1377
4c21f3c2
MZ
1378static int its_probe(struct device_node *node, struct irq_domain *parent)
1379{
1380 struct resource res;
1381 struct its_node *its;
1382 void __iomem *its_base;
54456db9 1383 struct irq_domain *inner_domain;
4c21f3c2
MZ
1384 u32 val;
1385 u64 baser, tmp;
1386 int err;
1387
1388 err = of_address_to_resource(node, 0, &res);
1389 if (err) {
1390 pr_warn("%s: no regs?\n", node->full_name);
1391 return -ENXIO;
1392 }
1393
1394 its_base = ioremap(res.start, resource_size(&res));
1395 if (!its_base) {
1396 pr_warn("%s: unable to map registers\n", node->full_name);
1397 return -ENOMEM;
1398 }
1399
1400 val = readl_relaxed(its_base + GITS_PIDR2) & GIC_PIDR2_ARCH_MASK;
1401 if (val != 0x30 && val != 0x40) {
1402 pr_warn("%s: no ITS detected, giving up\n", node->full_name);
1403 err = -ENODEV;
1404 goto out_unmap;
1405 }
1406
4559fbb3
YW
1407 err = its_force_quiescent(its_base);
1408 if (err) {
1409 pr_warn("%s: failed to quiesce, giving up\n",
1410 node->full_name);
1411 goto out_unmap;
1412 }
1413
4c21f3c2
MZ
1414 pr_info("ITS: %s\n", node->full_name);
1415
1416 its = kzalloc(sizeof(*its), GFP_KERNEL);
1417 if (!its) {
1418 err = -ENOMEM;
1419 goto out_unmap;
1420 }
1421
1422 raw_spin_lock_init(&its->lock);
1423 INIT_LIST_HEAD(&its->entry);
1424 INIT_LIST_HEAD(&its->its_device_list);
1425 its->base = its_base;
1426 its->phys_base = res.start;
4c21f3c2
MZ
1427 its->ite_size = ((readl_relaxed(its_base + GITS_TYPER) >> 4) & 0xf) + 1;
1428
1429 its->cmd_base = kzalloc(ITS_CMD_QUEUE_SZ, GFP_KERNEL);
1430 if (!its->cmd_base) {
1431 err = -ENOMEM;
1432 goto out_free_its;
1433 }
1434 its->cmd_write = its->cmd_base;
1435
841514ab 1436 err = its_alloc_tables(node->full_name, its);
4c21f3c2
MZ
1437 if (err)
1438 goto out_free_cmd;
1439
1440 err = its_alloc_collections(its);
1441 if (err)
1442 goto out_free_tables;
1443
1444 baser = (virt_to_phys(its->cmd_base) |
1445 GITS_CBASER_WaWb |
1446 GITS_CBASER_InnerShareable |
1447 (ITS_CMD_QUEUE_SZ / SZ_4K - 1) |
1448 GITS_CBASER_VALID);
1449
1450 writeq_relaxed(baser, its->base + GITS_CBASER);
1451 tmp = readq_relaxed(its->base + GITS_CBASER);
4c21f3c2 1452
4ad3e363 1453 if ((tmp ^ baser) & GITS_CBASER_SHAREABILITY_MASK) {
241a386c
MZ
1454 if (!(tmp & GITS_CBASER_SHAREABILITY_MASK)) {
1455 /*
1456 * The HW reports non-shareable, we must
1457 * remove the cacheability attributes as
1458 * well.
1459 */
1460 baser &= ~(GITS_CBASER_SHAREABILITY_MASK |
1461 GITS_CBASER_CACHEABILITY_MASK);
1462 baser |= GITS_CBASER_nC;
1463 writeq_relaxed(baser, its->base + GITS_CBASER);
1464 }
4c21f3c2
MZ
1465 pr_info("ITS: using cache flushing for cmd queue\n");
1466 its->flags |= ITS_FLAGS_CMDQ_NEEDS_FLUSHING;
1467 }
1468
241a386c
MZ
1469 writeq_relaxed(0, its->base + GITS_CWRITER);
1470 writel_relaxed(GITS_CTLR_ENABLE, its->base + GITS_CTLR);
1471
841514ab 1472 if (of_property_read_bool(node, "msi-controller")) {
54456db9
MZ
1473 struct msi_domain_info *info;
1474
1475 info = kzalloc(sizeof(*info), GFP_KERNEL);
1476 if (!info) {
1477 err = -ENOMEM;
1478 goto out_free_tables;
1479 }
1480
841514ab
MZ
1481 inner_domain = irq_domain_add_tree(node, &its_domain_ops, its);
1482 if (!inner_domain) {
4c21f3c2 1483 err = -ENOMEM;
54456db9 1484 kfree(info);
4c21f3c2
MZ
1485 goto out_free_tables;
1486 }
1487
841514ab
MZ
1488 inner_domain->parent = parent;
1489 inner_domain->bus_token = DOMAIN_BUS_NEXUS;
54456db9
MZ
1490 info->ops = &its_msi_domain_ops;
1491 info->data = its;
1492 inner_domain->host_data = info;
4c21f3c2
MZ
1493 }
1494
1495 spin_lock(&its_lock);
1496 list_add(&its->entry, &its_nodes);
1497 spin_unlock(&its_lock);
1498
1499 return 0;
1500
4c21f3c2
MZ
1501out_free_tables:
1502 its_free_tables(its);
1503out_free_cmd:
1504 kfree(its->cmd_base);
1505out_free_its:
1506 kfree(its);
1507out_unmap:
1508 iounmap(its_base);
1509 pr_err("ITS: failed probing %s (%d)\n", node->full_name, err);
1510 return err;
1511}
1512
1513static bool gic_rdists_supports_plpis(void)
1514{
1515 return !!(readl_relaxed(gic_data_rdist_rd_base() + GICR_TYPER) & GICR_TYPER_PLPIS);
1516}
1517
1518int its_cpu_init(void)
1519{
4c21f3c2 1520 if (!list_empty(&its_nodes)) {
16acae72
VM
1521 if (!gic_rdists_supports_plpis()) {
1522 pr_info("CPU%d: LPIs not supported\n", smp_processor_id());
1523 return -ENXIO;
1524 }
4c21f3c2
MZ
1525 its_cpu_init_lpis();
1526 its_cpu_init_collection();
1527 }
1528
1529 return 0;
1530}
1531
1532static struct of_device_id its_device_id[] = {
1533 { .compatible = "arm,gic-v3-its", },
1534 {},
1535};
1536
1537int its_init(struct device_node *node, struct rdists *rdists,
1538 struct irq_domain *parent_domain)
1539{
1540 struct device_node *np;
1541
1542 for (np = of_find_matching_node(node, its_device_id); np;
1543 np = of_find_matching_node(np, its_device_id)) {
1544 its_probe(np, parent_domain);
1545 }
1546
1547 if (list_empty(&its_nodes)) {
1548 pr_warn("ITS: No ITS available, not enabling LPIs\n");
1549 return -ENXIO;
1550 }
1551
1552 gic_rdists = rdists;
1553 gic_root_node = node;
1554
1555 its_alloc_lpi_tables();
1556 its_lpi_init(rdists->id_bits);
1557
1558 return 0;
1559}
This page took 0.123863 seconds and 5 git commands to generate.