Merge branch 'for-linus' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / irqchip / irq-armada-370-xp.c
blobb207b2c3aa5558efc0e4542e0b42309b681daf26
1 /*
2 * Marvell Armada 370 and Armada XP SoC IRQ handling
4 * Copyright (C) 2012 Marvell
6 * Lior Amsalem <alior@marvell.com>
7 * Gregory CLEMENT <gregory.clement@free-electrons.com>
8 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 * Ben Dooks <ben.dooks@codethink.co.uk>
11 * This file is licensed under the terms of the GNU General Public
12 * License version 2. This program is licensed "as is" without any
13 * warranty of any kind, whether express or implied.
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/irq.h>
20 #include <linux/interrupt.h>
21 #include <linux/irqchip.h>
22 #include <linux/irqchip/chained_irq.h>
23 #include <linux/cpu.h>
24 #include <linux/io.h>
25 #include <linux/of_address.h>
26 #include <linux/of_irq.h>
27 #include <linux/of_pci.h>
28 #include <linux/irqdomain.h>
29 #include <linux/slab.h>
30 #include <linux/syscore_ops.h>
31 #include <linux/msi.h>
32 #include <asm/mach/arch.h>
33 #include <asm/exception.h>
34 #include <asm/smp_plat.h>
35 #include <asm/mach/irq.h>
38 * Overall diagram of the Armada XP interrupt controller:
40 * To CPU 0 To CPU 1
42 * /\ /\
43 * || ||
44 * +---------------+ +---------------+
45 * | | | |
46 * | per-CPU | | per-CPU |
47 * | mask/unmask | | mask/unmask |
48 * | CPU0 | | CPU1 |
49 * | | | |
50 * +---------------+ +---------------+
51 * /\ /\
52 * || ||
53 * \\_______________________//
54 * ||
55 * +-------------------+
56 * | |
57 * | Global interrupt |
58 * | mask/unmask |
59 * | |
60 * +-------------------+
61 * /\
62 * ||
63 * interrupt from
64 * device
66 * The "global interrupt mask/unmask" is modified using the
67 * ARMADA_370_XP_INT_SET_ENABLE_OFFS and
68 * ARMADA_370_XP_INT_CLEAR_ENABLE_OFFS registers, which are relative
69 * to "main_int_base".
71 * The "per-CPU mask/unmask" is modified using the
72 * ARMADA_370_XP_INT_SET_MASK_OFFS and
73 * ARMADA_370_XP_INT_CLEAR_MASK_OFFS registers, which are relative to
74 * "per_cpu_int_base". This base address points to a special address,
75 * which automatically accesses the registers of the current CPU.
77 * The per-CPU mask/unmask can also be adjusted using the global
78 * per-interrupt ARMADA_370_XP_INT_SOURCE_CTL register, which we use
79 * to configure interrupt affinity.
81 * Due to this model, all interrupts need to be mask/unmasked at two
82 * different levels: at the global level and at the per-CPU level.
84 * This driver takes the following approach to deal with this:
86 * - For global interrupts:
88 * At ->map() time, a global interrupt is unmasked at the per-CPU
89 * mask/unmask level. It is therefore unmasked at this level for
90 * the current CPU, running the ->map() code. This allows to have
91 * the interrupt unmasked at this level in non-SMP
92 * configurations. In SMP configurations, the ->set_affinity()
93 * callback is called, which using the
94 * ARMADA_370_XP_INT_SOURCE_CTL() readjusts the per-CPU mask/unmask
95 * for the interrupt.
97 * The ->mask() and ->unmask() operations only mask/unmask the
98 * interrupt at the "global" level.
100 * So, a global interrupt is enabled at the per-CPU level as soon
101 * as it is mapped. At run time, the masking/unmasking takes place
102 * at the global level.
104 * - For per-CPU interrupts
106 * At ->map() time, a per-CPU interrupt is unmasked at the global
107 * mask/unmask level.
109 * The ->mask() and ->unmask() operations mask/unmask the interrupt
110 * at the per-CPU level.
112 * So, a per-CPU interrupt is enabled at the global level as soon
113 * as it is mapped. At run time, the masking/unmasking takes place
114 * at the per-CPU level.
117 /* Registers relative to main_int_base */
118 #define ARMADA_370_XP_INT_CONTROL (0x00)
119 #define ARMADA_370_XP_SW_TRIG_INT_OFFS (0x04)
120 #define ARMADA_370_XP_INT_SET_ENABLE_OFFS (0x30)
121 #define ARMADA_370_XP_INT_CLEAR_ENABLE_OFFS (0x34)
122 #define ARMADA_370_XP_INT_SOURCE_CTL(irq) (0x100 + irq*4)
123 #define ARMADA_370_XP_INT_SOURCE_CPU_MASK 0xF
124 #define ARMADA_370_XP_INT_IRQ_FIQ_MASK(cpuid) ((BIT(0) | BIT(8)) << cpuid)
126 /* Registers relative to per_cpu_int_base */
127 #define ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS (0x08)
128 #define ARMADA_370_XP_IN_DRBEL_MSK_OFFS (0x0c)
129 #define ARMADA_375_PPI_CAUSE (0x10)
130 #define ARMADA_370_XP_CPU_INTACK_OFFS (0x44)
131 #define ARMADA_370_XP_INT_SET_MASK_OFFS (0x48)
132 #define ARMADA_370_XP_INT_CLEAR_MASK_OFFS (0x4C)
133 #define ARMADA_370_XP_INT_FABRIC_MASK_OFFS (0x54)
134 #define ARMADA_370_XP_INT_CAUSE_PERF(cpu) (1 << cpu)
136 #define ARMADA_370_XP_MAX_PER_CPU_IRQS (28)
138 #define IPI_DOORBELL_START (0)
139 #define IPI_DOORBELL_END (8)
140 #define IPI_DOORBELL_MASK 0xFF
141 #define PCI_MSI_DOORBELL_START (16)
142 #define PCI_MSI_DOORBELL_NR (16)
143 #define PCI_MSI_DOORBELL_END (32)
144 #define PCI_MSI_DOORBELL_MASK 0xFFFF0000
146 static void __iomem *per_cpu_int_base;
147 static void __iomem *main_int_base;
148 static struct irq_domain *armada_370_xp_mpic_domain;
149 static u32 doorbell_mask_reg;
150 static int parent_irq;
151 #ifdef CONFIG_PCI_MSI
152 static struct irq_domain *armada_370_xp_msi_domain;
153 static struct irq_domain *armada_370_xp_msi_inner_domain;
154 static DECLARE_BITMAP(msi_used, PCI_MSI_DOORBELL_NR);
155 static DEFINE_MUTEX(msi_used_lock);
156 static phys_addr_t msi_doorbell_addr;
157 #endif
159 static inline bool is_percpu_irq(irq_hw_number_t irq)
161 if (irq <= ARMADA_370_XP_MAX_PER_CPU_IRQS)
162 return true;
164 return false;
168 * In SMP mode:
169 * For shared global interrupts, mask/unmask global enable bit
170 * For CPU interrupts, mask/unmask the calling CPU's bit
172 static void armada_370_xp_irq_mask(struct irq_data *d)
174 irq_hw_number_t hwirq = irqd_to_hwirq(d);
176 if (!is_percpu_irq(hwirq))
177 writel(hwirq, main_int_base +
178 ARMADA_370_XP_INT_CLEAR_ENABLE_OFFS);
179 else
180 writel(hwirq, per_cpu_int_base +
181 ARMADA_370_XP_INT_SET_MASK_OFFS);
184 static void armada_370_xp_irq_unmask(struct irq_data *d)
186 irq_hw_number_t hwirq = irqd_to_hwirq(d);
188 if (!is_percpu_irq(hwirq))
189 writel(hwirq, main_int_base +
190 ARMADA_370_XP_INT_SET_ENABLE_OFFS);
191 else
192 writel(hwirq, per_cpu_int_base +
193 ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
196 #ifdef CONFIG_PCI_MSI
198 static struct irq_chip armada_370_xp_msi_irq_chip = {
199 .name = "MPIC MSI",
200 .irq_mask = pci_msi_mask_irq,
201 .irq_unmask = pci_msi_unmask_irq,
204 static struct msi_domain_info armada_370_xp_msi_domain_info = {
205 .flags = (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
206 MSI_FLAG_MULTI_PCI_MSI),
207 .chip = &armada_370_xp_msi_irq_chip,
210 static void armada_370_xp_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
212 msg->address_lo = lower_32_bits(msi_doorbell_addr);
213 msg->address_hi = upper_32_bits(msi_doorbell_addr);
214 msg->data = 0xf00 | (data->hwirq + PCI_MSI_DOORBELL_START);
217 static int armada_370_xp_msi_set_affinity(struct irq_data *irq_data,
218 const struct cpumask *mask, bool force)
220 return -EINVAL;
223 static struct irq_chip armada_370_xp_msi_bottom_irq_chip = {
224 .name = "MPIC MSI",
225 .irq_compose_msi_msg = armada_370_xp_compose_msi_msg,
226 .irq_set_affinity = armada_370_xp_msi_set_affinity,
229 static int armada_370_xp_msi_alloc(struct irq_domain *domain, unsigned int virq,
230 unsigned int nr_irqs, void *args)
232 int hwirq, i;
234 mutex_lock(&msi_used_lock);
236 hwirq = bitmap_find_next_zero_area(msi_used, PCI_MSI_DOORBELL_NR,
237 0, nr_irqs, 0);
238 if (hwirq >= PCI_MSI_DOORBELL_NR) {
239 mutex_unlock(&msi_used_lock);
240 return -ENOSPC;
243 bitmap_set(msi_used, hwirq, nr_irqs);
244 mutex_unlock(&msi_used_lock);
246 for (i = 0; i < nr_irqs; i++) {
247 irq_domain_set_info(domain, virq + i, hwirq + i,
248 &armada_370_xp_msi_bottom_irq_chip,
249 domain->host_data, handle_simple_irq,
250 NULL, NULL);
253 return hwirq;
256 static void armada_370_xp_msi_free(struct irq_domain *domain,
257 unsigned int virq, unsigned int nr_irqs)
259 struct irq_data *d = irq_domain_get_irq_data(domain, virq);
261 mutex_lock(&msi_used_lock);
262 bitmap_clear(msi_used, d->hwirq, nr_irqs);
263 mutex_unlock(&msi_used_lock);
266 static const struct irq_domain_ops armada_370_xp_msi_domain_ops = {
267 .alloc = armada_370_xp_msi_alloc,
268 .free = armada_370_xp_msi_free,
271 static int armada_370_xp_msi_init(struct device_node *node,
272 phys_addr_t main_int_phys_base)
274 u32 reg;
276 msi_doorbell_addr = main_int_phys_base +
277 ARMADA_370_XP_SW_TRIG_INT_OFFS;
279 armada_370_xp_msi_inner_domain =
280 irq_domain_add_linear(NULL, PCI_MSI_DOORBELL_NR,
281 &armada_370_xp_msi_domain_ops, NULL);
282 if (!armada_370_xp_msi_inner_domain)
283 return -ENOMEM;
285 armada_370_xp_msi_domain =
286 pci_msi_create_irq_domain(of_node_to_fwnode(node),
287 &armada_370_xp_msi_domain_info,
288 armada_370_xp_msi_inner_domain);
289 if (!armada_370_xp_msi_domain) {
290 irq_domain_remove(armada_370_xp_msi_inner_domain);
291 return -ENOMEM;
294 reg = readl(per_cpu_int_base + ARMADA_370_XP_IN_DRBEL_MSK_OFFS)
295 | PCI_MSI_DOORBELL_MASK;
297 writel(reg, per_cpu_int_base +
298 ARMADA_370_XP_IN_DRBEL_MSK_OFFS);
300 /* Unmask IPI interrupt */
301 writel(1, per_cpu_int_base + ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
303 return 0;
305 #else
306 static inline int armada_370_xp_msi_init(struct device_node *node,
307 phys_addr_t main_int_phys_base)
309 return 0;
311 #endif
313 #ifdef CONFIG_SMP
314 static DEFINE_RAW_SPINLOCK(irq_controller_lock);
316 static int armada_xp_set_affinity(struct irq_data *d,
317 const struct cpumask *mask_val, bool force)
319 irq_hw_number_t hwirq = irqd_to_hwirq(d);
320 unsigned long reg, mask;
321 int cpu;
323 /* Select a single core from the affinity mask which is online */
324 cpu = cpumask_any_and(mask_val, cpu_online_mask);
325 mask = 1UL << cpu_logical_map(cpu);
327 raw_spin_lock(&irq_controller_lock);
328 reg = readl(main_int_base + ARMADA_370_XP_INT_SOURCE_CTL(hwirq));
329 reg = (reg & (~ARMADA_370_XP_INT_SOURCE_CPU_MASK)) | mask;
330 writel(reg, main_int_base + ARMADA_370_XP_INT_SOURCE_CTL(hwirq));
331 raw_spin_unlock(&irq_controller_lock);
333 return IRQ_SET_MASK_OK;
335 #endif
337 static struct irq_chip armada_370_xp_irq_chip = {
338 .name = "MPIC",
339 .irq_mask = armada_370_xp_irq_mask,
340 .irq_mask_ack = armada_370_xp_irq_mask,
341 .irq_unmask = armada_370_xp_irq_unmask,
342 #ifdef CONFIG_SMP
343 .irq_set_affinity = armada_xp_set_affinity,
344 #endif
345 .flags = IRQCHIP_SKIP_SET_WAKE | IRQCHIP_MASK_ON_SUSPEND,
348 static int armada_370_xp_mpic_irq_map(struct irq_domain *h,
349 unsigned int virq, irq_hw_number_t hw)
351 armada_370_xp_irq_mask(irq_get_irq_data(virq));
352 if (!is_percpu_irq(hw))
353 writel(hw, per_cpu_int_base +
354 ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
355 else
356 writel(hw, main_int_base + ARMADA_370_XP_INT_SET_ENABLE_OFFS);
357 irq_set_status_flags(virq, IRQ_LEVEL);
359 if (is_percpu_irq(hw)) {
360 irq_set_percpu_devid(virq);
361 irq_set_chip_and_handler(virq, &armada_370_xp_irq_chip,
362 handle_percpu_devid_irq);
363 } else {
364 irq_set_chip_and_handler(virq, &armada_370_xp_irq_chip,
365 handle_level_irq);
367 irq_set_probe(virq);
369 return 0;
372 static void armada_xp_mpic_smp_cpu_init(void)
374 u32 control;
375 int nr_irqs, i;
377 control = readl(main_int_base + ARMADA_370_XP_INT_CONTROL);
378 nr_irqs = (control >> 2) & 0x3ff;
380 for (i = 0; i < nr_irqs; i++)
381 writel(i, per_cpu_int_base + ARMADA_370_XP_INT_SET_MASK_OFFS);
383 /* Clear pending IPIs */
384 writel(0, per_cpu_int_base + ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS);
386 /* Enable first 8 IPIs */
387 writel(IPI_DOORBELL_MASK, per_cpu_int_base +
388 ARMADA_370_XP_IN_DRBEL_MSK_OFFS);
390 /* Unmask IPI interrupt */
391 writel(0, per_cpu_int_base + ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
394 static void armada_xp_mpic_perf_init(void)
396 unsigned long cpuid = cpu_logical_map(smp_processor_id());
398 /* Enable Performance Counter Overflow interrupts */
399 writel(ARMADA_370_XP_INT_CAUSE_PERF(cpuid),
400 per_cpu_int_base + ARMADA_370_XP_INT_FABRIC_MASK_OFFS);
403 #ifdef CONFIG_SMP
404 static void armada_mpic_send_doorbell(const struct cpumask *mask,
405 unsigned int irq)
407 int cpu;
408 unsigned long map = 0;
410 /* Convert our logical CPU mask into a physical one. */
411 for_each_cpu(cpu, mask)
412 map |= 1 << cpu_logical_map(cpu);
415 * Ensure that stores to Normal memory are visible to the
416 * other CPUs before issuing the IPI.
418 dsb();
420 /* submit softirq */
421 writel((map << 8) | irq, main_int_base +
422 ARMADA_370_XP_SW_TRIG_INT_OFFS);
425 static void armada_xp_mpic_reenable_percpu(void)
427 unsigned int irq;
429 /* Re-enable per-CPU interrupts that were enabled before suspend */
430 for (irq = 0; irq < ARMADA_370_XP_MAX_PER_CPU_IRQS; irq++) {
431 struct irq_data *data;
432 int virq;
434 virq = irq_linear_revmap(armada_370_xp_mpic_domain, irq);
435 if (virq == 0)
436 continue;
438 data = irq_get_irq_data(virq);
440 if (!irq_percpu_is_enabled(virq))
441 continue;
443 armada_370_xp_irq_unmask(data);
447 static int armada_xp_mpic_starting_cpu(unsigned int cpu)
449 armada_xp_mpic_perf_init();
450 armada_xp_mpic_smp_cpu_init();
451 armada_xp_mpic_reenable_percpu();
452 return 0;
455 static int mpic_cascaded_starting_cpu(unsigned int cpu)
457 armada_xp_mpic_perf_init();
458 armada_xp_mpic_reenable_percpu();
459 enable_percpu_irq(parent_irq, IRQ_TYPE_NONE);
460 return 0;
462 #endif
464 static const struct irq_domain_ops armada_370_xp_mpic_irq_ops = {
465 .map = armada_370_xp_mpic_irq_map,
466 .xlate = irq_domain_xlate_onecell,
469 #ifdef CONFIG_PCI_MSI
470 static void armada_370_xp_handle_msi_irq(struct pt_regs *regs, bool is_chained)
472 u32 msimask, msinr;
474 msimask = readl_relaxed(per_cpu_int_base +
475 ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS)
476 & PCI_MSI_DOORBELL_MASK;
478 writel(~msimask, per_cpu_int_base +
479 ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS);
481 for (msinr = PCI_MSI_DOORBELL_START;
482 msinr < PCI_MSI_DOORBELL_END; msinr++) {
483 int irq;
485 if (!(msimask & BIT(msinr)))
486 continue;
488 if (is_chained) {
489 irq = irq_find_mapping(armada_370_xp_msi_inner_domain,
490 msinr - PCI_MSI_DOORBELL_START);
491 generic_handle_irq(irq);
492 } else {
493 irq = msinr - PCI_MSI_DOORBELL_START;
494 handle_domain_irq(armada_370_xp_msi_inner_domain,
495 irq, regs);
499 #else
500 static void armada_370_xp_handle_msi_irq(struct pt_regs *r, bool b) {}
501 #endif
503 static void armada_370_xp_mpic_handle_cascade_irq(struct irq_desc *desc)
505 struct irq_chip *chip = irq_desc_get_chip(desc);
506 unsigned long irqmap, irqn, irqsrc, cpuid;
507 unsigned int cascade_irq;
509 chained_irq_enter(chip, desc);
511 irqmap = readl_relaxed(per_cpu_int_base + ARMADA_375_PPI_CAUSE);
512 cpuid = cpu_logical_map(smp_processor_id());
514 for_each_set_bit(irqn, &irqmap, BITS_PER_LONG) {
515 irqsrc = readl_relaxed(main_int_base +
516 ARMADA_370_XP_INT_SOURCE_CTL(irqn));
518 /* Check if the interrupt is not masked on current CPU.
519 * Test IRQ (0-1) and FIQ (8-9) mask bits.
521 if (!(irqsrc & ARMADA_370_XP_INT_IRQ_FIQ_MASK(cpuid)))
522 continue;
524 if (irqn == 1) {
525 armada_370_xp_handle_msi_irq(NULL, true);
526 continue;
529 cascade_irq = irq_find_mapping(armada_370_xp_mpic_domain, irqn);
530 generic_handle_irq(cascade_irq);
533 chained_irq_exit(chip, desc);
536 static void __exception_irq_entry
537 armada_370_xp_handle_irq(struct pt_regs *regs)
539 u32 irqstat, irqnr;
541 do {
542 irqstat = readl_relaxed(per_cpu_int_base +
543 ARMADA_370_XP_CPU_INTACK_OFFS);
544 irqnr = irqstat & 0x3FF;
546 if (irqnr > 1022)
547 break;
549 if (irqnr > 1) {
550 handle_domain_irq(armada_370_xp_mpic_domain,
551 irqnr, regs);
552 continue;
555 /* MSI handling */
556 if (irqnr == 1)
557 armada_370_xp_handle_msi_irq(regs, false);
559 #ifdef CONFIG_SMP
560 /* IPI Handling */
561 if (irqnr == 0) {
562 u32 ipimask, ipinr;
564 ipimask = readl_relaxed(per_cpu_int_base +
565 ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS)
566 & IPI_DOORBELL_MASK;
568 writel(~ipimask, per_cpu_int_base +
569 ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS);
571 /* Handle all pending doorbells */
572 for (ipinr = IPI_DOORBELL_START;
573 ipinr < IPI_DOORBELL_END; ipinr++) {
574 if (ipimask & (0x1 << ipinr))
575 handle_IPI(ipinr, regs);
577 continue;
579 #endif
581 } while (1);
584 static int armada_370_xp_mpic_suspend(void)
586 doorbell_mask_reg = readl(per_cpu_int_base +
587 ARMADA_370_XP_IN_DRBEL_MSK_OFFS);
588 return 0;
591 static void armada_370_xp_mpic_resume(void)
593 int nirqs;
594 irq_hw_number_t irq;
596 /* Re-enable interrupts */
597 nirqs = (readl(main_int_base + ARMADA_370_XP_INT_CONTROL) >> 2) & 0x3ff;
598 for (irq = 0; irq < nirqs; irq++) {
599 struct irq_data *data;
600 int virq;
602 virq = irq_linear_revmap(armada_370_xp_mpic_domain, irq);
603 if (virq == 0)
604 continue;
606 data = irq_get_irq_data(virq);
608 if (!is_percpu_irq(irq)) {
609 /* Non per-CPU interrupts */
610 writel(irq, per_cpu_int_base +
611 ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
612 if (!irqd_irq_disabled(data))
613 armada_370_xp_irq_unmask(data);
614 } else {
615 /* Per-CPU interrupts */
616 writel(irq, main_int_base +
617 ARMADA_370_XP_INT_SET_ENABLE_OFFS);
620 * Re-enable on the current CPU,
621 * armada_xp_mpic_reenable_percpu() will take
622 * care of secondary CPUs when they come up.
624 if (irq_percpu_is_enabled(virq))
625 armada_370_xp_irq_unmask(data);
629 /* Reconfigure doorbells for IPIs and MSIs */
630 writel(doorbell_mask_reg,
631 per_cpu_int_base + ARMADA_370_XP_IN_DRBEL_MSK_OFFS);
632 if (doorbell_mask_reg & IPI_DOORBELL_MASK)
633 writel(0, per_cpu_int_base + ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
634 if (doorbell_mask_reg & PCI_MSI_DOORBELL_MASK)
635 writel(1, per_cpu_int_base + ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
638 static struct syscore_ops armada_370_xp_mpic_syscore_ops = {
639 .suspend = armada_370_xp_mpic_suspend,
640 .resume = armada_370_xp_mpic_resume,
643 static int __init armada_370_xp_mpic_of_init(struct device_node *node,
644 struct device_node *parent)
646 struct resource main_int_res, per_cpu_int_res;
647 int nr_irqs, i;
648 u32 control;
650 BUG_ON(of_address_to_resource(node, 0, &main_int_res));
651 BUG_ON(of_address_to_resource(node, 1, &per_cpu_int_res));
653 BUG_ON(!request_mem_region(main_int_res.start,
654 resource_size(&main_int_res),
655 node->full_name));
656 BUG_ON(!request_mem_region(per_cpu_int_res.start,
657 resource_size(&per_cpu_int_res),
658 node->full_name));
660 main_int_base = ioremap(main_int_res.start,
661 resource_size(&main_int_res));
662 BUG_ON(!main_int_base);
664 per_cpu_int_base = ioremap(per_cpu_int_res.start,
665 resource_size(&per_cpu_int_res));
666 BUG_ON(!per_cpu_int_base);
668 control = readl(main_int_base + ARMADA_370_XP_INT_CONTROL);
669 nr_irqs = (control >> 2) & 0x3ff;
671 for (i = 0; i < nr_irqs; i++)
672 writel(i, main_int_base + ARMADA_370_XP_INT_CLEAR_ENABLE_OFFS);
674 armada_370_xp_mpic_domain =
675 irq_domain_add_linear(node, nr_irqs,
676 &armada_370_xp_mpic_irq_ops, NULL);
677 BUG_ON(!armada_370_xp_mpic_domain);
678 irq_domain_update_bus_token(armada_370_xp_mpic_domain, DOMAIN_BUS_WIRED);
680 /* Setup for the boot CPU */
681 armada_xp_mpic_perf_init();
682 armada_xp_mpic_smp_cpu_init();
684 armada_370_xp_msi_init(node, main_int_res.start);
686 parent_irq = irq_of_parse_and_map(node, 0);
687 if (parent_irq <= 0) {
688 irq_set_default_host(armada_370_xp_mpic_domain);
689 set_handle_irq(armada_370_xp_handle_irq);
690 #ifdef CONFIG_SMP
691 set_smp_cross_call(armada_mpic_send_doorbell);
692 cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_ARMADA_XP_STARTING,
693 "irqchip/armada/ipi:starting",
694 armada_xp_mpic_starting_cpu, NULL);
695 #endif
696 } else {
697 #ifdef CONFIG_SMP
698 cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_ARMADA_XP_STARTING,
699 "irqchip/armada/cascade:starting",
700 mpic_cascaded_starting_cpu, NULL);
701 #endif
702 irq_set_chained_handler(parent_irq,
703 armada_370_xp_mpic_handle_cascade_irq);
706 register_syscore_ops(&armada_370_xp_mpic_syscore_ops);
708 return 0;
711 IRQCHIP_DECLARE(armada_370_xp_mpic, "marvell,mpic", armada_370_xp_mpic_of_init);