Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 1 | /* |
Michal Simek | 968674b | 2013-08-27 10:48:29 +0200 | [diff] [blame] | 2 | * Copyright (C) 2007-2013 Michal Simek <monstr@monstr.eu> |
| 3 | * Copyright (C) 2012-2013 Xilinx, Inc. |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 4 | * Copyright (C) 2007-2009 PetaLogix |
| 5 | * Copyright (C) 2006 Atmark Techno, Inc. |
| 6 | * |
| 7 | * This file is subject to the terms and conditions of the GNU General Public |
| 8 | * License. See the file "COPYING" in the main directory of this archive |
| 9 | * for more details. |
| 10 | */ |
| 11 | |
Grant Likely | 2462bac | 2012-01-26 14:10:13 -0700 | [diff] [blame] | 12 | #include <linux/irqdomain.h> |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 13 | #include <linux/irq.h> |
Joel Porquet | fd4b267 | 2015-07-07 17:13:15 -0400 | [diff] [blame] | 14 | #include <linux/irqchip.h> |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 15 | #include <linux/irqchip/chained_irq.h> |
Michal Simek | bcff661 | 2013-08-27 10:49:00 +0200 | [diff] [blame] | 16 | #include <linux/of_address.h> |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 17 | #include <linux/io.h> |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 18 | #include <linux/jump_label.h> |
John Williams | 892ee92 | 2009-07-29 22:08:40 +1000 | [diff] [blame] | 19 | #include <linux/bug.h> |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 20 | #include <linux/of_irq.h> |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 21 | |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 22 | /* No one else should require these constants, so define them locally here. */ |
| 23 | #define ISR 0x00 /* Interrupt Status Register */ |
| 24 | #define IPR 0x04 /* Interrupt Pending Register */ |
| 25 | #define IER 0x08 /* Interrupt Enable Register */ |
| 26 | #define IAR 0x0c /* Interrupt Acknowledge Register */ |
| 27 | #define SIE 0x10 /* Set Interrupt Enable bits */ |
| 28 | #define CIE 0x14 /* Clear Interrupt Enable bits */ |
| 29 | #define IVR 0x18 /* Interrupt Vector Register */ |
| 30 | #define MER 0x1c /* Master Enable Register */ |
| 31 | |
| 32 | #define MER_ME (1<<0) |
| 33 | #define MER_HIE (1<<1) |
| 34 | |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 35 | static DEFINE_STATIC_KEY_FALSE(xintc_is_be); |
Michal Simek | 1aa1243 | 2014-02-24 14:56:32 +0100 | [diff] [blame] | 36 | |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 37 | struct xintc_irq_chip { |
| 38 | void __iomem *base; |
| 39 | struct irq_domain *root_domain; |
| 40 | u32 intr_mask; |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 41 | u32 nr_irq; |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 42 | }; |
| 43 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 44 | static struct xintc_irq_chip *primary_intc; |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 45 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 46 | static void xintc_write(struct xintc_irq_chip *irqc, int reg, u32 data) |
Michal Simek | 1aa1243 | 2014-02-24 14:56:32 +0100 | [diff] [blame] | 47 | { |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 48 | if (static_branch_unlikely(&xintc_is_be)) |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 49 | iowrite32be(data, irqc->base + reg); |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 50 | else |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 51 | iowrite32(data, irqc->base + reg); |
Michal Simek | 1aa1243 | 2014-02-24 14:56:32 +0100 | [diff] [blame] | 52 | } |
| 53 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 54 | static u32 xintc_read(struct xintc_irq_chip *irqc, int reg) |
Michal Simek | 1aa1243 | 2014-02-24 14:56:32 +0100 | [diff] [blame] | 55 | { |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 56 | if (static_branch_unlikely(&xintc_is_be)) |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 57 | return ioread32be(irqc->base + reg); |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 58 | else |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 59 | return ioread32(irqc->base + reg); |
Michal Simek | 1aa1243 | 2014-02-24 14:56:32 +0100 | [diff] [blame] | 60 | } |
| 61 | |
Thomas Gleixner | 6f205a4 | 2011-02-06 19:36:30 +0000 | [diff] [blame] | 62 | static void intc_enable_or_unmask(struct irq_data *d) |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 63 | { |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 64 | struct xintc_irq_chip *irqc = irq_data_get_irq_chip_data(d); |
| 65 | unsigned long mask = BIT(d->hwirq); |
Michal Simek | 6c7a267 | 2011-12-09 10:45:20 +0100 | [diff] [blame] | 66 | |
Zubair Lutfullah Kakakhel | a5734de | 2016-11-14 12:13:46 +0000 | [diff] [blame] | 67 | pr_debug("irq-xilinx: enable_or_unmask: %ld\n", d->hwirq); |
steve@digidescorp.com | 33d9ff5 | 2009-11-17 08:43:39 -0600 | [diff] [blame] | 68 | |
| 69 | /* ack level irqs because they can't be acked during |
| 70 | * ack function since the handle_level_irq function |
| 71 | * acks the irq before calling the interrupt handler |
| 72 | */ |
Thomas Gleixner | 4adc192 | 2011-03-24 14:52:04 +0100 | [diff] [blame] | 73 | if (irqd_is_level_type(d)) |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 74 | xintc_write(irqc, IAR, mask); |
Michal Simek | 7958a68 | 2012-11-05 11:51:13 +0100 | [diff] [blame] | 75 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 76 | xintc_write(irqc, SIE, mask); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 77 | } |
| 78 | |
Thomas Gleixner | 6f205a4 | 2011-02-06 19:36:30 +0000 | [diff] [blame] | 79 | static void intc_disable_or_mask(struct irq_data *d) |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 80 | { |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 81 | struct xintc_irq_chip *irqc = irq_data_get_irq_chip_data(d); |
| 82 | |
Zubair Lutfullah Kakakhel | a5734de | 2016-11-14 12:13:46 +0000 | [diff] [blame] | 83 | pr_debug("irq-xilinx: disable: %ld\n", d->hwirq); |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 84 | xintc_write(irqc, CIE, BIT(d->hwirq)); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 85 | } |
| 86 | |
Thomas Gleixner | 6f205a4 | 2011-02-06 19:36:30 +0000 | [diff] [blame] | 87 | static void intc_ack(struct irq_data *d) |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 88 | { |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 89 | struct xintc_irq_chip *irqc = irq_data_get_irq_chip_data(d); |
| 90 | |
Zubair Lutfullah Kakakhel | a5734de | 2016-11-14 12:13:46 +0000 | [diff] [blame] | 91 | pr_debug("irq-xilinx: ack: %ld\n", d->hwirq); |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 92 | xintc_write(irqc, IAR, BIT(d->hwirq)); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 93 | } |
| 94 | |
Thomas Gleixner | 6f205a4 | 2011-02-06 19:36:30 +0000 | [diff] [blame] | 95 | static void intc_mask_ack(struct irq_data *d) |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 96 | { |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 97 | struct xintc_irq_chip *irqc = irq_data_get_irq_chip_data(d); |
| 98 | unsigned long mask = BIT(d->hwirq); |
Michal Simek | 6c7a267 | 2011-12-09 10:45:20 +0100 | [diff] [blame] | 99 | |
Zubair Lutfullah Kakakhel | a5734de | 2016-11-14 12:13:46 +0000 | [diff] [blame] | 100 | pr_debug("irq-xilinx: disable_and_ack: %ld\n", d->hwirq); |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 101 | xintc_write(irqc, CIE, mask); |
| 102 | xintc_write(irqc, IAR, mask); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 103 | } |
| 104 | |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 105 | static struct irq_chip intc_dev = { |
| 106 | .name = "Xilinx INTC", |
Thomas Gleixner | 6f205a4 | 2011-02-06 19:36:30 +0000 | [diff] [blame] | 107 | .irq_unmask = intc_enable_or_unmask, |
| 108 | .irq_mask = intc_disable_or_mask, |
| 109 | .irq_ack = intc_ack, |
| 110 | .irq_mask_ack = intc_mask_ack, |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 111 | }; |
| 112 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 113 | static unsigned int xintc_get_irq_local(struct xintc_irq_chip *irqc) |
| 114 | { |
| 115 | unsigned int irq = 0; |
| 116 | u32 hwirq; |
| 117 | |
| 118 | hwirq = xintc_read(irqc, IVR); |
| 119 | if (hwirq != -1U) |
| 120 | irq = irq_find_mapping(irqc->root_domain, hwirq); |
| 121 | |
| 122 | pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq); |
| 123 | |
| 124 | return irq; |
| 125 | } |
| 126 | |
Marc Zyngier | 4cea749 | 2020-03-30 10:43:59 +0100 | [diff] [blame] | 127 | unsigned int xintc_get_irq(void) |
| 128 | { |
| 129 | unsigned int irq = -1; |
| 130 | u32 hwirq; |
| 131 | |
| 132 | hwirq = xintc_read(primary_intc, IVR); |
| 133 | if (hwirq != -1U) |
| 134 | irq = irq_find_mapping(primary_intc->root_domain, hwirq); |
| 135 | |
| 136 | pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq); |
| 137 | |
| 138 | return irq; |
| 139 | } |
| 140 | |
Michal Simek | c0d997f | 2012-12-13 17:30:05 +0100 | [diff] [blame] | 141 | static int xintc_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hw) |
Grant Likely | 2462bac | 2012-01-26 14:10:13 -0700 | [diff] [blame] | 142 | { |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 143 | struct xintc_irq_chip *irqc = d->host_data; |
| 144 | |
| 145 | if (irqc->intr_mask & BIT(hw)) { |
Grant Likely | 2462bac | 2012-01-26 14:10:13 -0700 | [diff] [blame] | 146 | irq_set_chip_and_handler_name(irq, &intc_dev, |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 147 | handle_edge_irq, "edge"); |
Grant Likely | 2462bac | 2012-01-26 14:10:13 -0700 | [diff] [blame] | 148 | irq_clear_status_flags(irq, IRQ_LEVEL); |
| 149 | } else { |
| 150 | irq_set_chip_and_handler_name(irq, &intc_dev, |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 151 | handle_level_irq, "level"); |
Grant Likely | 2462bac | 2012-01-26 14:10:13 -0700 | [diff] [blame] | 152 | irq_set_status_flags(irq, IRQ_LEVEL); |
| 153 | } |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 154 | irq_set_chip_data(irq, irqc); |
Grant Likely | 2462bac | 2012-01-26 14:10:13 -0700 | [diff] [blame] | 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | static const struct irq_domain_ops xintc_irq_domain_ops = { |
| 159 | .xlate = irq_domain_xlate_onetwocell, |
| 160 | .map = xintc_map, |
| 161 | }; |
| 162 | |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 163 | static void xil_intc_irq_handler(struct irq_desc *desc) |
| 164 | { |
| 165 | struct irq_chip *chip = irq_desc_get_chip(desc); |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 166 | struct xintc_irq_chip *irqc; |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 167 | u32 pending; |
| 168 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 169 | irqc = irq_data_get_irq_handler_data(&desc->irq_data); |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 170 | chained_irq_enter(chip, desc); |
| 171 | do { |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 172 | pending = xintc_get_irq_local(irqc); |
| 173 | if (pending == 0) |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 174 | break; |
| 175 | generic_handle_irq(pending); |
| 176 | } while (true); |
| 177 | chained_irq_exit(chip, desc); |
| 178 | } |
| 179 | |
Michal Simek | 8a9e90a | 2013-08-27 10:49:00 +0200 | [diff] [blame] | 180 | static int __init xilinx_intc_of_init(struct device_node *intc, |
| 181 | struct device_node *parent) |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 182 | { |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 183 | struct xintc_irq_chip *irqc; |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 184 | int ret, irq; |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 185 | |
| 186 | irqc = kzalloc(sizeof(*irqc), GFP_KERNEL); |
| 187 | if (!irqc) |
| 188 | return -ENOMEM; |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 189 | irqc->base = of_iomap(intc, 0); |
| 190 | BUG_ON(!irqc->base); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 191 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 192 | ret = of_property_read_u32(intc, "xlnx,num-intr-inputs", &irqc->nr_irq); |
Michal Simek | bcff661 | 2013-08-27 10:49:00 +0200 | [diff] [blame] | 193 | if (ret < 0) { |
Zubair Lutfullah Kakakhel | a5734de | 2016-11-14 12:13:46 +0000 | [diff] [blame] | 194 | pr_err("irq-xilinx: unable to read xlnx,num-intr-inputs\n"); |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 195 | goto error; |
Michal Simek | bcff661 | 2013-08-27 10:49:00 +0200 | [diff] [blame] | 196 | } |
| 197 | |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 198 | ret = of_property_read_u32(intc, "xlnx,kind-of-intr", &irqc->intr_mask); |
Michal Simek | bcff661 | 2013-08-27 10:49:00 +0200 | [diff] [blame] | 199 | if (ret < 0) { |
Zubair Lutfullah Kakakhel | 8a11da5 | 2016-11-14 12:13:50 +0000 | [diff] [blame] | 200 | pr_warn("irq-xilinx: unable to read xlnx,kind-of-intr\n"); |
| 201 | irqc->intr_mask = 0; |
Michal Simek | bcff661 | 2013-08-27 10:49:00 +0200 | [diff] [blame] | 202 | } |
| 203 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 204 | if (irqc->intr_mask >> irqc->nr_irq) |
Zubair Lutfullah Kakakhel | a5734de | 2016-11-14 12:13:46 +0000 | [diff] [blame] | 205 | pr_warn("irq-xilinx: mismatch in kind-of-intr param\n"); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 206 | |
Rob Herring | e81f54c | 2017-07-18 16:43:10 -0500 | [diff] [blame] | 207 | pr_info("irq-xilinx: %pOF: num_irq=%d, edge=0x%x\n", |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 208 | intc, irqc->nr_irq, irqc->intr_mask); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 209 | |
Michal Simek | 1aa1243 | 2014-02-24 14:56:32 +0100 | [diff] [blame] | 210 | |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 211 | /* |
| 212 | * Disable all external interrupts until they are |
| 213 | * explicity requested. |
| 214 | */ |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 215 | xintc_write(irqc, IER, 0); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 216 | |
| 217 | /* Acknowledge any pending interrupts just in case. */ |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 218 | xintc_write(irqc, IAR, 0xffffffff); |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 219 | |
| 220 | /* Turn on the Master Enable. */ |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 221 | xintc_write(irqc, MER, MER_HIE | MER_ME); |
| 222 | if (xintc_read(irqc, MER) != (MER_HIE | MER_ME)) { |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 223 | static_branch_enable(&xintc_is_be); |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 224 | xintc_write(irqc, MER, MER_HIE | MER_ME); |
Michal Simek | 1aa1243 | 2014-02-24 14:56:32 +0100 | [diff] [blame] | 225 | } |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 226 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 227 | irqc->root_domain = irq_domain_add_linear(intc, irqc->nr_irq, |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 228 | &xintc_irq_domain_ops, irqc); |
| 229 | if (!irqc->root_domain) { |
| 230 | pr_err("irq-xilinx: Unable to create IRQ domain\n"); |
Michal Simek | c74038b | 2020-03-17 18:25:58 +0530 | [diff] [blame] | 231 | ret = -EINVAL; |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 232 | goto error; |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 233 | } |
Dan Christensen | 7c2c851 | 2013-03-17 04:48:56 -0500 | [diff] [blame] | 234 | |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 235 | if (parent) { |
| 236 | irq = irq_of_parse_and_map(intc, 0); |
| 237 | if (irq) { |
| 238 | irq_set_chained_handler_and_data(irq, |
| 239 | xil_intc_irq_handler, |
| 240 | irqc); |
| 241 | } else { |
| 242 | pr_err("irq-xilinx: interrupts property not in DT\n"); |
| 243 | ret = -EINVAL; |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 244 | goto error; |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 245 | } |
| 246 | } else { |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 247 | primary_intc = irqc; |
Marc Zyngier | e02f6c0 | 2020-03-30 10:41:58 +0100 | [diff] [blame] | 248 | irq_set_default_host(primary_intc->root_domain); |
Zubair Lutfullah Kakakhel | 9689c99 | 2016-11-14 12:13:49 +0000 | [diff] [blame] | 249 | } |
Michal Simek | 8a9e90a | 2013-08-27 10:49:00 +0200 | [diff] [blame] | 250 | |
| 251 | return 0; |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 252 | |
Mubin Sayyed | 67862a3 | 2020-03-17 18:25:57 +0530 | [diff] [blame] | 253 | error: |
| 254 | iounmap(irqc->base); |
Zubair Lutfullah Kakakhel | 591db74 | 2016-11-14 12:13:47 +0000 | [diff] [blame] | 255 | kfree(irqc); |
| 256 | return ret; |
| 257 | |
Michal Simek | eedbdab | 2009-03-27 14:25:49 +0100 | [diff] [blame] | 258 | } |
Michal Simek | 8a9e90a | 2013-08-27 10:49:00 +0200 | [diff] [blame] | 259 | |
Zubair Lutfullah Kakakhel | 8328255 | 2016-11-14 12:13:51 +0000 | [diff] [blame] | 260 | IRQCHIP_DECLARE(xilinx_intc_xps, "xlnx,xps-intc-1.00.a", xilinx_intc_of_init); |
| 261 | IRQCHIP_DECLARE(xilinx_intc_opb, "xlnx,opb-intc-1.00.c", xilinx_intc_of_init); |